Skip to content

Commit

Permalink
style: make the karma.conf.coffee more coffee-like
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtajina committed May 6, 2013
1 parent 0607d67 commit 9f64df9
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions test/e2e/coffee-config/karma.conf.coffee
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
module.exports = (karma) ->
karma.configure {
frameworks: ['jasmine'],
karma.configure

frameworks: ['jasmine']

files: [
'*.js',
'*.js'
'*.coffee'
],
]

autoWatch: true,
autoWatch: true

browsers: ['Chrome'],
browsers: ['Chrome']

reporters: ['dots'],
reporters: ['dots']

preprocessors: {
'**/*.coffee': 'coffee'
},
}

plugins: [
'karma-jasmine',
'karma-coffee-preprocessor',
'karma-chrome-launcher',
'karma-jasmine'
'karma-coffee-preprocessor'
'karma-chrome-launcher'
'karma-firefox-launcher'
],
}
]

0 comments on commit 9f64df9

Please sign in to comment.