Skip to content

Instantly share code, notes, and snippets.

@fatihacet
Created December 20, 2014 14:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fatihacet/c54b6b3e542aea11da86 to your computer and use it in GitHub Desktop.
Save fatihacet/c54b6b3e542aea11da86 to your computer and use it in GitHub Desktop.
Sample karma.conf.js
module.exports = function(config) {
config.set({
basePath: '',
frameworks: ['jasmine'],
files: [
'build/js/**/*.js',
'build/tests/**/test_*.js'
],
exclude: [
],
preprocessors: {},
reporters: ['dots'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['PhantomJS'],
singleRun: true
});
};
@Thomlam
Copy link

Thomlam commented Sep 12, 2023

ok

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment