mirror of
https://github.com/ansible/awx.git
synced 2026-02-24 06:26:00 -03:30
21 lines
584 B
Plaintext
21 lines
584 B
Plaintext
// Karma configuration
|
|
// Generated on Mon Aug 04 2014 21:17:04 GMT-0400 (EDT)
|
|
|
|
var sharedConfig = require('./karma-shared.conf');
|
|
|
|
module.exports = function(config) {
|
|
var conf = sharedConfig();
|
|
|
|
// list of files / patterns to load in the browser
|
|
conf.files = conf.files.concat([
|
|
'../static/lib/angular-mocks/angular-mocks.js',
|
|
'./unit/*'
|
|
]);
|
|
|
|
// level of logging
|
|
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
|
|
conf.logLevel = config.LOG_INFO,
|
|
|
|
config.set(conf);
|
|
};
|