Skip to content

Commit bb3c6d3

Browse files
committed
created karma.conf.js
1 parent fb0424f commit bb3c6d3

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

Diff for: karma.conf.js

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
'use strict';
2+
3+
module.exports = function(config) {
4+
config.set({
5+
6+
basePath: '',
7+
8+
frameworks: ['mocha'],
9+
10+
files: [
11+
'bower_components/zxcvbn/zxcvbn.js',
12+
'node_modules/chai/chai.js',
13+
'bower_components/angular/angular.js',
14+
'bower_components/angular-mocks/angular-mocks.js',
15+
'angular-file-model.js',
16+
'test.js'
17+
],
18+
19+
exclude: [],
20+
preprocessors: {
21+
},
22+
reporters: ['progress'],
23+
port: 9876,
24+
colors: true,
25+
logLevel: config.LOG_INFO,
26+
autoWatch: true,
27+
browsers: ['Chrome', 'Firefox'],
28+
singleRun: false
29+
});
30+
};

0 commit comments

Comments
 (0)