Untitled

Anonymous
plain_text
05/20/2021 1:24 PM
184 B
29
Indexable
import http from 'k6/http';
import { sleep } from 'k6';

export default function() {
  http.get('https://127.0.0.1/');
  sleep(1);
}
Editor is loading...