config.tpl.coffee 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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://npmjs.org/browse/keyword/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://npmjs.org/browse/keyword/karma-preprocessor
  18. preprocessors: {%PREPROCESSORS%
  19. }
  20. # test results reporter to use
  21. # possible values: 'dots', 'progress'
  22. # available reporters: https://npmjs.org/browse/keyword/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:
  30. # - config.LOG_DISABLE
  31. # - config.LOG_ERROR
  32. # - config.LOG_WARN
  33. # - config.LOG_INFO
  34. # - config.LOG_DEBUG
  35. logLevel: config.LOG_INFO
  36. # enable / disable watching file and executing tests whenever any file changes
  37. autoWatch: %AUTO_WATCH%
  38. # start these browsers
  39. # available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
  40. browsers: [%BROWSERS%]
  41. # Continuous Integration mode
  42. # if true, Karma captures browsers, runs the tests and exits
  43. singleRun: false
  44. # Concurrency level
  45. # how many browser should be started simultaneous
  46. concurrency: Infinity