summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/test/TestSuites.json
diff options
context:
space:
mode:
Diffstat (limited to 'remote/test/puppeteer/test/TestSuites.json')
-rw-r--r--remote/test/puppeteer/test/TestSuites.json68
1 files changed, 68 insertions, 0 deletions
diff --git a/remote/test/puppeteer/test/TestSuites.json b/remote/test/puppeteer/test/TestSuites.json
new file mode 100644
index 0000000000..75fcc1dd0d
--- /dev/null
+++ b/remote/test/puppeteer/test/TestSuites.json
@@ -0,0 +1,68 @@
+{
+ "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": "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": {}
+ }
+}