add dev mode to playwright tests

This commit is contained in:
Rene Haas
2022-08-12 12:54:41 +02:00
parent 6f40de9291
commit 6e65ff9a90
15 changed files with 143 additions and 134 deletions
+2 -2
View File
@@ -46,8 +46,8 @@
"postjest": "full-coverage",
"jest:node": "jest --runInBand --detectOpenHandles --selectProjects node --testPathPattern",
"jest:jsdom": "jest --runInBand --detectOpenHandles --selectProjects jsdom --testPathPattern",
"playwright": "playwright test --quiet",
"playwright": "playwright test",
"postplaywright": "playwright-merge-coverage && full-coverage",
"playwright:dev": "playwright test --workers 1"
"playwright:dev": "playwright test --workers 1 --timeout 0 --global-timeout 0"
}
}