mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
75 lines
1.7 KiB
JSON
75 lines
1.7 KiB
JSON
{
|
|
"testSuites": [
|
|
{
|
|
"id": "chrome-headless",
|
|
"platforms": ["linux", "win32", "darwin"],
|
|
"parameters": ["chrome", "headless", "cdp"],
|
|
"expectedLineCoverage": 93
|
|
},
|
|
{
|
|
"id": "chrome-headful",
|
|
"platforms": ["linux"],
|
|
"parameters": ["chrome", "headful", "cdp"],
|
|
"expectedLineCoverage": 93
|
|
},
|
|
{
|
|
"id": "chrome-new-headless",
|
|
"platforms": ["linux"],
|
|
"parameters": ["chrome", "new-headless", "cdp"],
|
|
"expectedLineCoverage": 93
|
|
},
|
|
{
|
|
"id": "firefox-headless",
|
|
"platforms": ["linux", "darwin"],
|
|
"parameters": ["firefox", "headless", "cdp"],
|
|
"expectedLineCoverage": 80
|
|
},
|
|
{
|
|
"id": "firefox-headful",
|
|
"platforms": ["linux"],
|
|
"parameters": ["firefox", "headful", "cdp"],
|
|
"expectedLineCoverage": 80
|
|
},
|
|
{
|
|
"id": "firefox-bidi",
|
|
"platforms": ["linux"],
|
|
"parameters": ["firefox", "headless", "webDriverBiDi"],
|
|
"expectedLineCoverage": 56
|
|
},
|
|
{
|
|
"id": "firefox-bidi-headful",
|
|
"platforms": ["linux"],
|
|
"parameters": ["firefox", "headful", "webDriverBiDi"],
|
|
"expectedLineCoverage": 56
|
|
},
|
|
{
|
|
"id": "chrome-bidi",
|
|
"platforms": ["linux"],
|
|
"parameters": ["chrome", "headless", "webDriverBiDi"],
|
|
"expectedLineCoverage": 56
|
|
}
|
|
],
|
|
"parameterDefinitions": {
|
|
"chrome": {
|
|
"PUPPETEER_PRODUCT": "chrome"
|
|
},
|
|
"firefox": {
|
|
"PUPPETEER_PRODUCT": "firefox"
|
|
},
|
|
"headless": {
|
|
"HEADLESS": "true",
|
|
"PUPPETEER_LOGLEVEL": "silent"
|
|
},
|
|
"headful": {
|
|
"HEADLESS": "false"
|
|
},
|
|
"new-headless": {
|
|
"HEADLESS": "new"
|
|
},
|
|
"webDriverBiDi": {
|
|
"PUPPETEER_PROTOCOL": "webDriverBiDi"
|
|
},
|
|
"cdp": {}
|
|
}
|
|
}
|