You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.0 KiB
39 lines
1.0 KiB
module.exports = function (config) {
|
|
config.set({
|
|
plugins: [
|
|
'karma-mocha',
|
|
'karma-chrome-launcher',
|
|
'karma-firefox-launcher'
|
|
],
|
|
frameworks: ['mocha'],
|
|
singleRun: false,
|
|
autoWatch: true,
|
|
colors: true,
|
|
reporters: ['dots'],
|
|
browsers: [process.env.TRAVIS ? 'Firefox' : 'Chrome'],
|
|
files: [
|
|
'bower_components/jquery/dist/jquery.js',
|
|
'bower_components/angular/angular.js',
|
|
'bower_components/ckeditor/ckeditor.js',
|
|
|
|
{
|
|
pattern: 'bower_components/ckeditor/**/*',
|
|
watched: false,
|
|
included: false,
|
|
served: true
|
|
},
|
|
|
|
'bower_components/lodash/lodash.js',
|
|
'node_modules/underscore.string/dist/underscore.string.js',
|
|
'bower_components/angular-mocks/angular-mocks.js',
|
|
'node_modules/chai/chai.js',
|
|
'node_modules/chai-jquery/chai-jquery.js',
|
|
'node_modules/sinon/pkg/sinon.js',
|
|
'node_modules/sinon-chai/lib/sinon-chai.js',
|
|
|
|
'angular-ckeditor.js',
|
|
'test/*.js'
|
|
],
|
|
logLevel: config.LOG_ERROR
|
|
});
|
|
};
|
|
|