This repository contains a simple "Hello World" example using k6, a modern load testing tool.
- k6 installed
k6 run script.jsReplace script.js with your test script file.
.
├── readme.md
├── script.js
script.js: Main k6 test script.
When you run the test, you should see output similar to:
/\ |‾‾| /‾‾/ /‾/
/\ / \ | |_/ / / /
/ \/ \ | | / ‾‾\
/ \ | |‾\ \ | (_) |
/ __________ \ |__| \__\ \___/ .io
execution: local
script: script.js
output: -
scenarios: (100.00%) 1 scenario, 1 max VUs, 1m0s max duration (incl. graceful stop):
* default: 1 looping VUs for 10s (gracefulStop: 30s)
...
Feel free to modify this README as your project evolves.