-
Notifications
You must be signed in to change notification settings - Fork 78
/
intern.json
97 lines (90 loc) · 2.35 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"extends": "./node_modules/@dojo/scripts/intern/base.json",
"capabilities+": {
"name": "@dojo/framework",
"browserstack.debug": false
},
"environments": [
{ "browserName": "node" }
],
"suites": [
"./dist/dev/tests/has/unit/all.js",
"./dist/dev/tests/shim/unit/all.js",
"./dist/dev/tests/i18n/unit/all.js",
"./dist/dev/tests/stores/unit/all.js",
"./dist/dev/tests/testing/unit/all.js"
],
"functionalSuites": [
"./dist/dev/tests/has/functional/all.js",
"./dist/dev/tests/shim/functional/all.js",
"./dist/dev/tests/i18n/functional/**/*.js",
"./dist/dev/tests/core/functional/all.js",
"./dist/dev/tests/routing/functional/**/*.js",
"./dist/dev/tests/stores/functional/all.js"
],
"plugins": [
{
"script": "./dist/dev/src/shim/main",
"useLoader": true
},
{
"script": "./dist/dev/tests/core/support/jsdom-plugin.js",
"useLoader": true
},
"./dist/dev/tests/shim/support/has-plugin.js"
],
"browser": {
"loader": {
"script": "./node_modules/@dojo/scripts/intern/loader.js",
"options": {
"shimPath": "./dist/dev/src/shim/util/amd.js",
"packages": [
{ "name": "src", "location": "dist/dev/src" },
{ "name": "tests", "location": "dist/dev/tests" },
{
"name": "immutable",
"location": "./node_modules/immutable/dist",
"main": "immutable.js"
},
{
"name": "cross-fetch",
"location": "./node_modules/cross-fetch"
}
],
"map": {
"*": {
"@dojo/framework/shim/main": "./dist/dev/src/shim/main"
}
}
}
},
"suites+": [
"./dist/dev/tests/routing/unit/all.js",
"./dist/dev/tests/core/unit/all.js"
],
"plugins+": [
"./node_modules/cross-fetch/dist/browser-polyfill.js",
{
"script": "./dist/dev/src/shim/browser.js",
"useLoader": true
},
{
"script": "./dist/dev/tests/core/support/loadCustomElements.js",
"useLoader": true
}
]
},
"node": {
"suites+": [
"./dist/dev/tests/routing/unit/**/*.js",
"!./dist/dev/tests/routing/unit/**/all.js",
"!./dist/dev/tests/routing/unit/history/StateHistory.js",
"./dist/dev/tests/core/unit/**/*.js",
"!./dist/dev/tests/core/unit/all.js",
"!./dist/dev/tests/core/unit/meta/all.js",
"!./dist/dev/tests/core/unit/meta/Resize.js",
"!./dist/dev/tests/core/unit/meta/WebAnimation.js",
"!./dist/dev/tests/core/unit/meta/Intersection.js"
]
}
}