We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb0424f commit bb3c6d3Copy full SHA for bb3c6d3
karma.conf.js
@@ -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