feat: Added k6 performance tests

This commit is contained in:
2026-05-10 22:00:24 +02:00
commit 5f7dd2e281
9 changed files with 290 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{
"name": "k6-tests",
"version": "1.0.0",
"description": "K6 load tests for NowChess",
"scripts": {
"test:smoke": "k6 run simulations/smokeTest.js",
"test:load": "k6 run simulations/loadTest.js",
"test:stress": "k6 run simulations/stressTest.js",
"test:spike": "k6 run simulations/spikeTest.js",
"test:endurance": "k6 run simulations/enduranceTest.js"
},
"keywords": ["k6", "load-testing", "performance"]
}