-
Notifications
You must be signed in to change notification settings - Fork 35
/
testem.json
35 lines (35 loc) · 902 Bytes
/
testem.json
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
{
"launchers": {
"unit-node": {
"exe": "node",
"args": ["--icu-data-dir=node_modules/full-icu", "tests/runners/unit-node.js"],
"protocol": "tap"
},
"firefox-web-ext-stresstest": {
"exe": "node",
"args": ["tests/runners/firefox-web-ext-stresstest.js"],
"protocol": "tap"
},
"firefox-web-ext": {
"exe": "node",
"args": ["tests/runners/firefox-web-ext.js"],
"protocol": "tap"
},
"ghostery-headless": {
"exe": "node",
"args": ["tests/runners/ghostery-headless.js"],
"protocol": "tap"
},
"chromium-headless": {
"exe": "node",
"args": ["tests/runners/chromium-headless.js"],
"protocol": "tap"
}
},
"browser_args": {
"chromium": [
"--no-sandbox"
]
},
"test_page": "tests/index.mustache"
}