-
Notifications
You must be signed in to change notification settings - Fork 42
/
karma.conf.js
38 lines (26 loc) · 1023 Bytes
/
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
// Karma configuration
// Generated on Thu Jan 09 2014 13:59:16 GMT-0500 (EST)
module.exports = function (config) {
config.set({
basePath: './',
frameworks: ['mocha'],
exclude: [],
reporters: ['progress'],
port: 9876,
runnerPort: 9100,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
// Start these browsers, currently available:
// - Chrome
// - ChromeCanary (has to be installed with `npm install karma-chrome-canary-launcher`)
// - Firefox (has to be installed with `npm install karma-firefox-launcher`)
// - Opera (has to be installed with `npm install karma-opera-launcher`)
// - Safari (only Mac; has to be installed with `npm install karma-safari-launcher`)
// - PhantomJS
// - IE (only Windows; has to be installed with `npm install karma-ie-launcher`)
browsers: ['PhantomJS'],
captureTimeout: 60000,
singleRun: false
});
};