Skip to content

Instantly share code, notes, and snippets.

@poying
Created July 8, 2015 05:35
Show Gist options
  • Save poying/dbe287de9970042bc8d2 to your computer and use it in GitHub Desktop.
Save poying/dbe287de9970042bc8d2 to your computer and use it in GitHub Desktop.
config.set({
reporters: ['progress', 'coverage'],
frameworks: ['karma'],
files: [
// 主程式,不需要 include 到網頁裡
{ pattern: 'lib/*.js', included: false },
// 測試程式
'test/**/*.js'
],
duo: {
plugins: [
'duo-istanbul'
]
},
coverageReporter: {
reporters: [
{ type: 'html' }
]
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment