mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
7 lines
No EOL
138 B
JavaScript
7 lines
No EOL
138 B
JavaScript
import http from 'k6/http';
|
|
import { sleep } from 'k6';
|
|
|
|
export default function () {
|
|
http.get('https://test.k6.io');
|
|
sleep(1);
|
|
} |