Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

karma.config.js 791 B

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