Files
ComfyUI_frontend/perf-test.sh
2025-06-09 07:43:57 -07:00

13 lines
479 B
Bash

# Run performance tests with more detailed output
npx playwright test --workers 1 --project=performance --reporter=line
# Run performance tests on specific files
#npx playwright test --workers 1 --project=performance interaction.spec.ts
# Run performance tests with trace for debugging
#npx playwright test --workers 1 --project=performance --trace=on
# Run performance tests and update any snapshots
#npx playwright test --workers 1 --project=performance --update-snapshots