bigbluebutton-Github/bigbluebutton-tests/playwright/package.json
Brent Baccala 92e1671e39 add a 'test-firefox-ci' target to playwright's package.json, and configure
github to run it for a pull request if a "[Tt]est Firefox" label is present
2022-08-22 22:09:00 -04:00

18 lines
547 B
JSON

{
"scripts": {
"test": "npx playwright test",
"test:filter": "npx playwright test -g",
"test:headed": "npx playwright test --headed",
"test:debug": "npx playwright test --debug -g",
"test-ci": "export CI='true' && npx playwright test --project=chromium --grep @ci",
"test-firefox-ci": "export CI='true' && npx playwright test --project=firefox --grep @ci"
},
"dependencies": {
"@playwright/test": "^1.19.2",
"playwright": "^1.19.2",
"axios": "^0.26.1",
"dotenv": "^16.0.0",
"sha1": "^1.1.1"
}
}