karma.conf.js 256 B

123456789101112
  1. module.exports = function (config) {
  2. config.set({
  3. basePath: '..',
  4. frameworks: ['mocha'],
  5. reporters: ['mocha'],
  6. files: ['test/build/bundle.js'],
  7. port: 9876,
  8. colors: true,
  9. singleRun: true,
  10. logLevel: config.LOG_INFO
  11. });
  12. };