forked from cliqz-oss/browser-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestem.json
40 lines (40 loc) · 1.01 KB
/
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
36
37
38
39
40
{
"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-selenium": {
"exe": "node",
"args": ["tests/runners/ghostery-selenium.js"],
"protocol": "tap"
},
"chromium-selenium": {
"exe": "node",
"args": ["tests/runners/chromium-selenium.js"],
"protocol": "tap"
},
"react-native":{
"exe":"bash",
"args": ["tests/runners/react-native.sh"],
"protocol": "tap"
}
},
"browser_args": {
"chromium": [
"--no-sandbox"
]
},
"test_page": "tests/index.mustache"
}