mirror of
https://github.com/robonen/canvas-3d.git
synced 2026-03-20 10:54:39 +00:00
8 lines
130 B
JavaScript
8 lines
130 B
JavaScript
import http from 'k6/http';
|
|
import {sleep} from 'k6';
|
|
|
|
export default function () {
|
|
http.get('http://localhost');
|
|
sleep(1);
|
|
}
|