Skip to content

Instantly share code, notes, and snippets.

@RobK
Created September 4, 2013 13:41
Show Gist options
  • Save RobK/6437094 to your computer and use it in GitHub Desktop.
Save RobK/6437094 to your computer and use it in GitHub Desktop.
Original karma.conf.js
// Contents of: config/karma.conf.js
basePath = '../';
files = [
JASMINE,
JASMINE_ADAPTER,
'app/lib/angular/angular.js',
'app/lib/angular/angular-*.js',
'test/lib/angular/angular-mocks.js',
'app/js/**/*.js',
'test/unit/**/*.js'
];
autoWatch = true;
browsers = ['Chrome'];
junitReporter = {
outputFile: 'test_out/unit.xml',
suite: 'unit'
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment