forked from angular-translate/angular-translate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.midway.conf.js
48 lines (33 loc) · 926 Bytes
/
karma.midway.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
// Karma configuration
var shared = require('./karma.util.conf.js');
module.exports = function (config) {
var scope = process.env.TEST_SCOPE;
shared.log(scope);
config.set({
basePath: '',
frameworks: ['jasmine'],
files: [
shared.injectByScope(scope, 'angular/angular.js'),
'src/translate.js',
'src/**/*.js',
'test/midway/**/*Spec.js'
],
exclude: [],
port: 9876,
colors: true,
// LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG
logLevel: config.LOG_INFO,
autoWatch: true,
// Start these browsers, currently available:
// - Chrome
// - ChromeCanary
// - Firefox
// - Opera
// - Safari (only Mac)
// - PhantomJS
// - IE (only Windows)
browsers: [process.env.TRAVIS ? 'Firefox' : (process.env.NO_HEADLESS ? 'Chrome' : 'ChromeHeadless')],
captureTimeout: 60000,
singleRun: false
});
};