This project contains performance test scripts using K6, a modern load testing tool for developers.
brew install k6choco install k6sudo apt update
sudo apt install gnupg ca-certificates
curl -s https://dl.k6.io/key.gpg | sudo apt-key add -
echo "deb https://dl.k6.io/deb stable main" | sudo tee /etc/apt/sources.list.d/k6.list
sudo apt update
sudo apt install k6For other installation methods, see the official documentation.
-
Open your terminal and navigate to the project directory:
cd /path/to/your/project -
View the results in your terminal after the test completes.
k6 run vimec.js
-
Run a test script creating report:
K6_WEB_DASHBOARD=true K6_WEB_DASHBOARD_EXPORT=report.html k6 run vimec.js