karma.conf.js 592 B

1234567891011121314151617181920212223242526
  1. // Karma configuration
  2. // Generated on Thu Dec 20 2018 15:16:19 GMT+0800 (中国标准时间)
  3. module.exports = function(config) {
  4. config.set({
  5. basePath: '',
  6. frameworks: ['jasmine'],
  7. files: [
  8. //'source/*',
  9. '**/test/**/*.spec.js'
  10. ],
  11. exclude: [
  12. ],
  13. preprocessors: {
  14. },
  15. reporters: ['progress'],
  16. port: 9876,
  17. colors: true,
  18. logLevel: config.LOG_INFO,
  19. autoWatch: false,
  20. browsers: ['Chrome'],
  21. singleRun: false,
  22. concurrency: Infinity
  23. });
  24. };