-
Notifications
You must be signed in to change notification settings - Fork 83
/
intern.json
51 lines (50 loc) · 1.09 KB
/
intern.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
41
42
43
44
45
46
47
48
49
50
51
{
"functionalSuites": "tests/functional/app.js",
"node": {
"suites": "tests/unit/**/*.js",
"plugins": ["tests/build_check.js", "tests/pre.js"]
},
"environments": [
"node",
{
"browserName": "chrome",
"fixSessionCapabilities": false,
"chromeOptions": {
"binary": "{pwd}/node_modules/electron/dist/Electron.app/Contents/MacOS/Electron",
"args": ["app={pwd}/build/bootstrap.js"]
}
}
],
"tunnelOptions": {
"version": "3.4.0",
"drivers": [
{
"name": "chrome",
"version": "2.24"
}
]
},
"filterErrorStack": true,
"configs": {
"spectron": {
"suites": "tests/functional/spectron.js",
"environments": [],
"node": {
"suites": []
}
},
"windows": {
"environments": [
"node",
{
"browserName": "chrome",
"fixSessionCapabilities": false,
"chromeOptions": {
"binary": "{pwd}/node_modules/electron/dist/electron.exe",
"args": ["app={pwd}/build/bootstrap.js"]
}
}
]
}
}
}