mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
42 lines
833 B
JSON
42 lines
833 B
JSON
|
{
|
||
|
"testSuites": [
|
||
|
{
|
||
|
"id": "chrome-headless",
|
||
|
"platforms": ["linux", "win32", "darwin"],
|
||
|
"parameters": ["chrome", "headless"]
|
||
|
},
|
||
|
{
|
||
|
"id": "chrome-headful",
|
||
|
"platforms": ["linux"],
|
||
|
"parameters": ["chrome", "headful"]
|
||
|
},
|
||
|
{
|
||
|
"id": "chrome-new-headless",
|
||
|
"platforms": ["linux"],
|
||
|
"parameters": ["chrome", "chrome-headless"]
|
||
|
},
|
||
|
{
|
||
|
"id": "firefox-headless",
|
||
|
"platforms": ["linux"],
|
||
|
"parameters": ["firefox", "headless"]
|
||
|
}
|
||
|
],
|
||
|
"parameterDefinitons": {
|
||
|
"chrome": {
|
||
|
"PUPPETEER_PRODUCT": "chrome"
|
||
|
},
|
||
|
"firefox": {
|
||
|
"PUPPETEER_PRODUCT": "firefox"
|
||
|
},
|
||
|
"headless": {
|
||
|
"HEADLESS": "true"
|
||
|
},
|
||
|
"headful": {
|
||
|
"HEADLESS": "false"
|
||
|
},
|
||
|
"chrome-headless": {
|
||
|
"HEADLESS": "chrome"
|
||
|
}
|
||
|
}
|
||
|
}
|