You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
482 B

7 years ago
  1. module.exports = function (config) {
  2. config.set({
  3. basePath: '',
  4. files: [
  5. 'mock/socket-io.js',
  6. 'node_modules/angular/angular.js',
  7. 'node_modules/angular-mocks/angular-mocks.js',
  8. 'socket.js',
  9. '*.spec.js'
  10. ],
  11. reporters: ['progress'],
  12. port: 9876,
  13. colors: true,
  14. logLevel: config.LOG_INFO,
  15. browsers: ['Chrome'],
  16. frameworks: ['jasmine'],
  17. captureTimeout: 60000,
  18. autoWatch: true,
  19. singleRun: false
  20. });
  21. };