Skip to content

Instantly share code, notes, and snippets.

@diablowu
Created March 10, 2015 01:34
Show Gist options
  • Select an option

  • Save diablowu/7435de575fb38c2f02d5 to your computer and use it in GitHub Desktop.

Select an option

Save diablowu/7435de575fb38c2f02d5 to your computer and use it in GitHub Desktop.
karam runner configuration
module.exports = function(config){
config.set({
basePath : '../../',
files : [
'public/app/lib/angular/angular.js',
'public/app/lib/angular-mocks/angular-mocks.js',
'public/app/js/**/*.js',
'test/page/unit/**/*.js'
],
autoWatch : true,
frameworks: ['jasmine'],
browsers : ['PhantomJS'],
plugins : [
'karma-chrome-launcher',
'karma-phantomjs-launcher',
'karma-jasmine'
]
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment