config.tpl.ts 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. // Karma configuration
  2. // Generated on %DATE%
  3. module.exports = (config) => {
  4. config.set({
  5. // base path that will be used to resolve all patterns (eg. files, exclude)
  6. basePath: '%BASE_PATH%',
  7. // frameworks to use
  8. // available frameworks: https://www.npmjs.com/search?q=keywords:karma-adapter
  9. frameworks: [%FRAMEWORKS%],
  10. // list of files / patterns to load in the browser
  11. files: [%FILES%
  12. ],
  13. // list of files / patterns to exclude
  14. exclude: [%EXCLUDE%
  15. ],
  16. // preprocess matching files before serving them to the browser
  17. // available preprocessors: https://www.npmjs.com/search?q=keywords:karma-preprocessor
  18. preprocessors: {%PREPROCESSORS%
  19. },
  20. // test results reporter to use
  21. // possible values: 'dots', 'progress'
  22. // available reporters: https://www.npmjs.com/search?q=keywords:karma-reporter
  23. reporters: ['progress'],
  24. // web server port
  25. port: 9876,
  26. // enable / disable colors in the output (reporters and logs)
  27. colors: true,
  28. // level of logging
  29. // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
  30. logLevel: config.LOG_INFO,
  31. // enable / disable watching file and executing tests whenever any file changes
  32. autoWatch: %AUTO_WATCH%,
  33. // start these browsers
  34. // available browser launchers: https://www.npmjs.com/search?q=keywords:karma-launcher
  35. browsers: [%BROWSERS%],
  36. // Continuous Integration mode
  37. // if true, Karma captures browsers, runs the tests and exits
  38. singleRun: false,
  39. // Concurrency level
  40. // how many browser instances should be started simultaneously
  41. concurrency: Infinity
  42. })
  43. }