forked from ni/VireoSDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
26 lines (19 loc) · 828 Bytes
/
karma.conf.js
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
// Generated on Mon Dec 12 2016 13:30:12 GMT-0600 (Central Standard Time)
module.exports = function (config) {
'use strict';
var sharedConfig = require('./karma.shared.js');
sharedConfig.files = sharedConfig.files.concat([
// test assets
'test-it/karma/utilities/extendJasmineTimeout.js',
// test specs
'test-it/karma/publicapi/*.test.js',
'test-it/karma/http/*.test.js'
]);
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
sharedConfig.logLevel = config.LOG_INFO;
// Timeout for jasmine set to 10000 in extendJasmineTimeout.js so warn if test time getting close
sharedConfig.reportSlowerThan = 8000;
config.set(sharedConfig);
};