karma.conf.js 322 B

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