forked from sroze/angular-simple-model
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkarma.config.js
More file actions
26 lines (21 loc) · 721 Bytes
/
karma.config.js
File metadata and controls
26 lines (21 loc) · 721 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
// Karma configuration file
module.exports = function (karma) {
var files = require('./files').files;
karma.set({
// base path, that will be used to resolve files and exclude
basePath: '.',
// list of files / patterns to load in the browser
files: [].concat(files.angular, files.src, files.test),
// level of logging
// possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG
logLevel: karma.LOG_DEBUG,
// Start these browsers, currently available:
// - Chrome
// - ChromeCanary
// - Firefox
// - Opera
// - Safari
// - PhantomJS
browsers: [ 'PhantomJS' ]
})
};