You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(artillery): enhance stress testing configurations and add new scripts
- Added new artillery commands for balance status and sign session key tests, improving testing capabilities.
- Updated the PKP sign configuration to use a multi-endpoint processor for better flexibility.
- Introduced a new balance status script to monitor account balances during tests.
- Refactored existing scripts to include debug logging for HTTP responses, aiding in troubleshooting.
Copy file name to clipboardExpand all lines: package.json
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,9 @@
25
25
"auth-services": "cd packages/auth-services && bun run start",
26
26
"test:e2e": "bun test ./e2e/src/e2e.spec.ts -t",
27
27
"artillery:init": "bun run ./e2e/artillery/src/init.ts",
28
-
"artillery:pkp-sign": "dotenvx run --env-file=.env -- sh -c 'artillery run ./e2e/artillery/configs/pkp-sign.yml ${ARTILLERY_KEY:+--record --key $ARTILLERY_KEY}'"
28
+
"artillery:balance-status": "LOG_LEVEL=silent bun run ./e2e/artillery/src/balance-status.ts",
29
+
"artillery:pkp-sign": "DEBUG_HTTP=true LOG_LEVEL=silent dotenvx run --env-file=.env -- sh -c 'artillery run ./e2e/artillery/configs/pkp-sign.yml ${ARTILLERY_KEY:+--record --key $ARTILLERY_KEY}'",
30
+
"artillery:sign-session-key": "DEBUG_HTTP=true LOG_LEVEL=silent dotenvx run --env-file=.env -- sh -c 'artillery run ./e2e/artillery/configs/sign-session-key.yml ${ARTILLERY_KEY:+--record --key $ARTILLERY_KEY}'"
0 commit comments