-
Notifications
You must be signed in to change notification settings - Fork 28
/
intern.json
83 lines (71 loc) · 1.62 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"capabilities+": {
"project": "Dojo 2",
"name": "@dojo/loader",
"fixSessionCapabilities": false,
"browserstack.debug": false
},
"environments": [
{ "browserName": "node" }
],
"suites": [
"./_build/tests/unit/all.js"
],
"functionalSuites": [
"./_build/tests/functional/all.js"
],
"browser": {
"loader": {
"script": "dojo2",
"options": {
"packages": [
{ "name": "src", "location": "_build/src" },
{ "name": "tests", "location": "_build/tests" },
{ "name": "@dojo", "location": "node_modules/@dojo" },
{ "name": "sinon", "location": "node_modules/sinon/pkg", "main": "sinon" }
]
}
}
},
"node": {
"suites": [
"./_build/tests/unit/all-node.js"
]
},
"coverage": [
"./_build/src/**/*.js"
],
"configs": {
"browserstack": {
"tunnel": "browserstack",
"environments+": [
{ "browserName": "internet explorer", "version": "11" },
{ "browserName": "edge" },
{ "browserName": "firefox", "platform": "WINDOWS" },
{ "browserName": "chrome", "platform": "WINDOWS" }
],
"maxConcurrency": 5
},
"local": {
"tunnel": "selenium",
"tunnelOptions": {
"hostname": "localhost",
"port": 4444
},
"environments+": [
{ "browserName": "chrome" }
]
},
"saucelabs": {
"tunnel": "saucelabs",
"tunnelOptions": {},
"defaultTimeout": 10000,
"environments+": [
{ "browserName": "internet explorer", "version": [ "11.0" ], "platform": "Windows 7" },
{ "browserName": "firefox", "version": "43", "platform": "Windows 10" },
{ "browserName": "chrome", "platform": "Windows 10" }
],
"maxConcurrency": 4
}
}
}