mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-05 23:50:08 +00:00
13 lines
503 B
Bash
Executable File
13 lines
503 B
Bash
Executable File
# Run performance tests with more detailed output
|
|
npx playwright test --workers 1 --project=performance --reporter=line --ignore-snapshots --ui
|
|
|
|
# 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
|
|
|