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.
60 lines
1.3 KiB
60 lines
1.3 KiB
// Karma shared configuration
|
|
|
|
module.exports = function(config) {
|
|
config.set({
|
|
|
|
// base path, that will be used to resolve files and exclude
|
|
basePath: '',
|
|
|
|
// list of files / patterns to load in the browser
|
|
files: [
|
|
'node_modules/angular/angular.js',
|
|
'node_modules/angular-mocks/angular-mocks.js',
|
|
'./*.js'
|
|
],
|
|
|
|
// list of files / patterns to exclude
|
|
exclude: [],
|
|
|
|
/* Enable / disable watching file and executing tests
|
|
* whenever any file changes
|
|
*/
|
|
autoWatch: true,
|
|
|
|
// testing framework to use (jasmine/mocha/qunit/...)
|
|
// as well as any additional frameworks (requirejs/chai/sinon/...)
|
|
frameworks: [
|
|
'mocha',
|
|
'chai',
|
|
'sinon',
|
|
'chai-sinon'
|
|
],
|
|
|
|
logLevel: config.LOG_INFO,
|
|
|
|
// Shared plugins (default is 'karma-*'):
|
|
plugins: [
|
|
'karma-*'
|
|
],
|
|
|
|
// web server port
|
|
port: 8080,
|
|
|
|
// Start these browsers, currently available:
|
|
// - Chrome
|
|
// - ChromeCanary
|
|
// - Firefox
|
|
// - Opera
|
|
// - Safari (only Mac)
|
|
// - PhantomJS
|
|
// - IE (only Windows)
|
|
browsers: [
|
|
'Chrome'
|
|
],
|
|
|
|
// Continuous Integration mode
|
|
// if true, it capture browsers, run tests and exit
|
|
singleRun: true
|
|
});
|
|
};
|
|
|