-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathintern.json
59 lines (59 loc) · 1.1 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
52
53
54
55
56
57
58
59
{
"remoteUrl": "http://localhost:3000",
"node": {
"suites": [
"eon-core/tests/unit/node/**/*.js"
]
},
"functionalSuites": [
"eon-core/tests/functional/browser/**/*.js",
"!eon-core/tests/functional/browser/**/*performance*.js"
],
"configs": {
"node": {
"environments+": [
"node"
]
},
"browser": {
"plugins": [
"eon-core/tests/intern-plugin.js"
],
"environments+": [
"chrome"
]
},
"performance": {
"plugins": [
"eon-core/tests/intern-plugin.js"
],
"environments+": [
{
"browserName": "chrome",
"fixSessionCapabilities": false
}
],
"leaveRemoteOpen": true
},
"cloud": {
"plugins": [
"eon-core/tests/intern-plugin.js"
],
"tunnel": "testingbot",
"maxConcurrency": 1,
"environments": [
{
"browserName": "chrome",
"version": "72",
"platform": "WIN10"
}
]
},
"dev": {
"extends": [
"node",
"browser"
]
}
}
}