mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-06 21:46:17 +01:00
139d7d9f0f
- angular-google-analytics plugin update from 0.0.15 to 1.1.7 - google analytics config moved into secrets.yml/production
25 lines
651 B
JavaScript
25 lines
651 B
JavaScript
// Karma v0.13 http://karma-runner.github.io/0.13/config/configuration-file.html
|
|
// See configuration documentation above for CLI arguments
|
|
module.exports = function(config) {
|
|
config.set({
|
|
basePath: './..',
|
|
frameworks: ['jasmine'],
|
|
autoWatch: true,
|
|
colors: true,
|
|
files: [
|
|
'bower_components/angular/angular.js',
|
|
'bower_components/angular-mocks/angular-mocks.js',
|
|
'index.js',
|
|
'test/unit/*.js'
|
|
],
|
|
reporters: ['progress'],
|
|
browsers: ['Chrome'],
|
|
logLevel: config.LOG_INFO,
|
|
captureTimeout: 5000,
|
|
singleRun: false,
|
|
port: 9876,
|
|
runnerPort: 9100,
|
|
reportSlowerThan: 500
|
|
});
|
|
};
|