-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.conf.json
47 lines (47 loc) · 1.04 KB
/
karma.conf.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
{
"frameworks": [
"browserify",
"jasmine"
],
"basePath": "",
"files": [
"node_modules/polyfill-function-prototype-bind/bind.js",
"node_modules/es6-promise/dist/es6-promise.js",
"node_modules/angular/angular.js",
"node_modules/angular-mocks/angular-mocks.js",
"node_modules/grid/src/modules/grid-spec-helper/matchers.js",
"src/**/*.spec.js"
],
"browserify": {
"debug": true
},
"preprocessors": {
"src/**/*.spec.js": "browserify",
"node_modules/grid/src/modules/grid-spec-helper/matchers.js": "browserify"
},
"autoWatch": true,
"reporters": [
"progress"
],
"browsers": ["PhantomJS_custom"],
"customLaunchers": {
"PhantomJS_custom": {
"base": "PhantomJS",
"options": {
"viewportSize": {
"width": 400,
"height": 500
}
}
}
},
"junitReporter": {
"outputFile": "test_out/unit.xml",
"suite": "unit"
},
"notifyReporter": {
"reportSuccess": false
},
"browserNoActivityTimeout": 3000000,
"reportSlowerThan": 250
}