Skip to content

Instantly share code, notes, and snippets.

@zdwolfe
Last active December 26, 2015 23:58
Show Gist options
  • Save zdwolfe/7233960 to your computer and use it in GitHub Desktop.
Save zdwolfe/7233960 to your computer and use it in GitHub Desktop.
module.exports = function(config) {
'use strict';
config.set({
basePath: '',
frameworks: ['jasmine'],
files: [
'app/bower_components/angular/angular.js',
'app/bower_components/angular-mocks/angular-mocks.js',
'app/scripts/*.js',
'app/scripts/**/*.js',
'app/views/**/*.html',
'test/spec/**/*.js'
],
exclude: [],
port: 8080,
preprocessors: {
'app/views/**/*.html': 'html2js'
},
ngHtml2JsPreprocessor: {
stripPrefix: 'app/'
},
logLevel: config.LOG_INFO,
autoWatch: false,
// - IE (only Windows)
browsers: ['PhantomJS'],
singleRun: false
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment