summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/test/TestSuites.json
blob: 75fcc1dd0d9fcf7b57af17af5a4ca48f2ee31edf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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": {}
  }
}