Untitled

 avatar
unknown
plain_text
4 years ago
138 B
16
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...