forked from kasperlewau/angular-float-label
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
29 lines (28 loc) · 843 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
// Karma configuration
// Generated on Tue Feb 25 2014 14:08:45 GMT+0100 (CET)
module.exports = function(config) {
config.set({
basePath: '',
frameworks: ['mocha', 'sinon-chai'],
files: [
'spec/lib/angular.js',
'spec/lib/angular-mocks.js',
'angular-float-label.js',
'spec/angular-float-label.spec.js'
],
exclude: [],
// test results reporter to use
// possible values: 'dots', 'progress', 'junit', 'growl', 'coverage'
reporters: ['progress'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['PhantomJS'],
// If browser does not capture in given timeout [ms], kill it
captureTimeout: 60000,
// Continuous Integration mode
// if true, it capture browsers, run tests and exit
singleRun: false
});
};