6d473eed7d
With the update of some linting packages, several style fixes were needed to conform with the updated style guidelines. Change-Id: If73036a6d4a3a2f6e93b15d1fa6ed3d253fdc7b1
45 lines
1.1 KiB
JavaScript
45 lines
1.1 KiB
JavaScript
module.exports = function (config) {
|
|
'use strict';
|
|
|
|
config.set({
|
|
|
|
basePath: '../',
|
|
|
|
files: [
|
|
// Angular libraries.
|
|
'app/assets/lib/angular/angular.js',
|
|
'app/assets/lib/angular-ui-router/release/angular-ui-router.js',
|
|
'app/assets/lib/angular-mocks/angular-mocks.js',
|
|
'app/assets/lib/angular-bootstrap/ui-bootstrap-tpls.min.js',
|
|
'app/assets/lib/angular-busy/dist/angular-busy.min.js',
|
|
'app/assets/lib/angular-resource/angular-resource.min.js',
|
|
'app/assets/lib/angular-confirm-modal/angular-confirm.js',
|
|
// JS files.
|
|
'app/app.js',
|
|
'app/components/**/*.js',
|
|
'app/shared/*.js',
|
|
'app/shared/**/*.js',
|
|
|
|
// Test Specs.
|
|
'tests/unit/*.js'
|
|
],
|
|
|
|
autoWatch: true,
|
|
|
|
frameworks: ['jasmine'],
|
|
|
|
browsers: ['Chrome'],
|
|
|
|
plugins: [
|
|
'karma-chrome-launcher',
|
|
'karma-jasmine'
|
|
],
|
|
|
|
junitReporter: {
|
|
outputFile: 'test_out/unit.xml',
|
|
suite: 'unit'
|
|
}
|
|
|
|
});
|
|
};
|