karma.conf.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = function(config) {
  config.set({
      basePath: ''
    , frameworks: ['mocha']
    , files: [
          'build/build.js'
        , 'test/support/karma.js'
        , 'test/browser.js'
      ]
    , exclude: []
    , reporters: ['progress']
    , port: 9876
    , colors: true
    , logLevel: config.LOG_INFO
    , autoWatch: false
    , browsers: ['PhantomJS']
    , captureTimeout: 60000
    , singleRun: true
    , client: {
      mocha: {
        timeout: 60000
      }
    }
  });
};