Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

31 rader
818 B

  1. module.exports = function (config) {
  2. var configuration = {
  3. basePath: '..',
  4. frameworks: ['mocha', 'chai'],
  5. files: [
  6. 'node_modules/unibabel/index.js',
  7. 'node_modules/unibabel/unibabel.hex.js',
  8. 'webcrypto.js',
  9. 'tests/**/*.js'
  10. ],
  11. exclude: [
  12. 'tests/node.js',
  13. 'tests/helper.js',
  14. 'tests/karma.config.js',
  15. ],
  16. preprocessors: {},
  17. reporters: ['progress'],
  18. port: 9876,
  19. colors: true,
  20. logLevel: config.LOG_INFO,
  21. autoWatch: true,
  22. browsers: ['Chrome', 'Firefox'],
  23. singleRun: true,
  24. concurrency: Infinity
  25. };
  26. if (process.env.TRAVIS) {
  27. configuration.browsers = ['PhantomJS'];
  28. }
  29. config.set(configuration)
  30. };