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
+12
View File
@@ -0,0 +1,12 @@
import { chessUserJourney } from '../scenarios/chessUserScenario.js';
import { thresholds } from '../config.js';
export const options = {
vus: 1,
duration: '1m',
thresholds,
};
export default function () {
chessUserJourney();
}