karma.conf.js 440 B

1234567891011121314151617181920
  1. module.exports = function(config) {
  2. config.set({
  3. basePath: ''
  4. , frameworks: [ 'mocha' ]
  5. , files: [
  6. 'build/build.js'
  7. , 'test/bootstrap/karma.js'
  8. , 'test/*.js'
  9. ]
  10. , exclude: []
  11. , reporters: [ 'progress' ]
  12. , port: 9876
  13. , colors: true
  14. , logLevel: config.LOG_INFO
  15. , autoWatch: true
  16. , browsers: [ 'PhantomJS' ]
  17. , captureTimeout: 60000
  18. , singleRun: false
  19. });
  20. };