build: add a firefox:bidi:headful command (#11760)

This commit is contained in:
Alex Rudenko 2024-01-26 11:05:59 +01:00 committed by GitHub
parent ce894a2ffc
commit 932b010932
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 0 deletions

View File

@ -35,6 +35,7 @@
"test:chrome:new-headless": "wireit",
"test:firefox": "wireit",
"test:firefox:bidi": "wireit",
"test:firefox:bidi:headful": "wireit",
"test:firefox:headful": "wireit",
"test:firefox:headless": "wireit",
"validate-licenses": "tsx tools/third_party/validate-licenses.ts",
@ -103,6 +104,9 @@
"test:firefox:bidi": {
"command": "npm test -- --test-suite firefox-bidi"
},
"test:firefox:bidi:headful": {
"command": "npm test -- --test-suite firefox-bidi-headful"
},
"test:firefox:headful": {
"command": "npm test -- --test-suite firefox-headful"
},
@ -112,6 +116,7 @@
"test:firefox": {
"dependencies": [
"test:firefox:bidi",
"test:firefox:bidi:headful",
"test:firefox:headful",
"test:firefox:headless"
]

View File

@ -36,6 +36,12 @@
"parameters": ["firefox", "headless", "webDriverBiDi"],
"expectedLineCoverage": 56
},
{
"id": "firefox-bidi-headful",
"platforms": ["linux"],
"parameters": ["firefox", "headful", "webDriverBiDi"],
"expectedLineCoverage": 56
},
{
"id": "chrome-bidi",
"platforms": ["linux"],