-
Notifications
You must be signed in to change notification settings - Fork 287
/
intern.json
71 lines (65 loc) · 1.9 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
{
"defaultTimeout": "5000",
"browser": {
"loader": {
"script": "systemjs"
},
"plugins": [
"dist/intern-angular-shim.js"
],
"suites": [
"app/app.component.spec",
"app/app.component.router.spec",
"app/bag/async-helper.spec",
"app/bag/bag.no-testbed.spec",
"app/bag/bag.spec",
"app/components/dashboard/dashboard-hero.component.spec",
"app/components/dashboard/dashboard.component.no-testbed.spec",
"app/components/dashboard/dashboard.component.spec",
"app/components/hero/hero-detail.component.no-testbed.spec",
"app/components/hero/hero-detail.component.spec",
"app/components/hero/hero-list.component.spec",
"app/components/about.component.spec",
"app/components/banner-inline.component.spec",
"app/components/banner.component.detect-changes.spec",
"app/components/banner.component.spec",
"app/components/welcome.component.spec",
"app/models/hero.spec",
"app/services/http-hero.service.spec",
"app/shared/highlight.directive.spec",
"app/shared/title-case.pipe.spec",
"app/shared/twain.component.spec"
]
},
"functionalSuites": [
"dist-e2e/app.e2e-spec"
],
"configs": {
"ci": {
"extends": [ "plain", "wdcoverage" ],
"environments+": [
{ "browserName": "firefox" }
]
},
"coverage": {
"reporters+": [ "htmlcoverage", "jsoncoverage" ],
"excludeInstrumentation": "(?:node_modules|testing|e2e)\\/|[.-]spec\\.js$|dist\\/[^\\/]+\\.js$"
},
"local": {
"extends": [ "pretty", "wdcoverage" ]
},
"plain": {
"reporters": [ "runner" ]
},
"pretty": {
"reporters": [ "pretty" ]
},
"wd": {
"tunnel": "selenium",
"environments": { "browserName": "chrome", "fixSessionCapabilities": "no-detect" }
},
"wdcoverage": {
"extends": [ "wd", "coverage" ]
}
}
}