Skip to content

Instantly share code, notes, and snippets.

@phenixita
Created July 6, 2021 10:52
Show Gist options
  • Save phenixita/ff82c2fab26880f367e22c65bd7d7a83 to your computer and use it in GitHub Desktop.
Save phenixita/ff82c2fab26880f367e22c65bd7d7a83 to your computer and use it in GitHub Desktop.
k6 simple test
import http from 'k6/http';
import { sleep } from 'k6';
export default function () {
http.get('https://test.k6.io');
sleep(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment