-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathkarma.conf.js
More file actions
34 lines (27 loc) · 743 Bytes
/
karma.conf.js
File metadata and controls
34 lines (27 loc) · 743 Bytes
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
module.exports = function(config) {
'use strict';
config.set({
autoWatch: true,
debug: true,
browsers: ['Chrome', 'Firefox'],
frameworks: ['jasmine', 'fixture'],
logLevel: config.LOG_ERROR,
port: 9876,
reporters: ['dots'],
singleRun: true,
files: [
'node_modules/jquery/dist/jquery.min.js',
'node_modules/jasmine-jquery/lib/jasmine-jquery.js',
'node_modules/validaty/lib/jquery.validaty.js',
'node_modules/validaty/lib/jquery.validaty.validators.js',
'spec/spec_helper.js',
'spec/fixtures/*.html',
'lib/*.css',
'lib/*.js',
'spec/javascripts/**/*.js'
],
preprocessors: {
'**/*.html': ['html2js']
}
});
};