-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.conf.js
57 lines (48 loc) · 1.82 KB
/
karma.conf.js
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
module.exports = function(config) {
'use strict';
config.set({
files: [
'libs/classy.js',
'mousewheel.js',
'yui3/build/yui/yui-min.js',
'yui3/build/oop/oop-min.js',
'yui3/build/event-custom-base/event-custom-base-min.js',
'yui3/build/event-base/event-base-min.js',
'yui3/build/dom-core/dom-core-min.js',
'yui3/build/dom-base/dom-base-min.js',
'yui3/build/selector-native/selector-native-min.js',
'yui3/build/selector/selector-min.js',
'yui3/build/node-core/node-core-min.js',
'yui3/build/color-base/color-base-min.js',
'yui3/build/dom-style/dom-style-min.js',
'yui3/build/node-base/node-base-min.js',
'yui3/build/gesture-simulate/gesture-simulate-min.js',
'yui3/build/node-event-simulate/node-event-simulate-min.js',
'yui3/build/event-custom-complex/event-custom-complex-min.js',
'yui3/build/async-queue/async-queue-min.js',
'yui3/build/dom-screen/dom-screen-min.js',
'yui3/build/node-screen/node-screen-min.js',
'yui3/build/gesture-simulate/gesture-simulate-min.js',
'yui3/build/event-custom-complex/event-custom-complex-min.js',
'yui3/build/event-simulate/event-simulate-min.js',
'tests/HTMLFixture.js',
'tests/*.js'
],
basePath: './',
frameworks: ['jasmine'],
browser : ['Chrome', 'Firefox', 'Safari', 'Opera', 'IE', 'PhantomJS'],
exclude : [],
reporters : ['progress'],
junitReporter : {
outputFile: 'test-results.xml'
},
port : 9876,
runnerPort : 9100,
colors : true,
logLevel : config.LOG_INFO,
autoWatch : true,
captureTimeout : 5000,
singleRun : false,
reportSlowerThan : 500
});
};