1module.exports = function(config) { 2 config.set({ 3 frameworks: ['mocha', 'chai'], 4 plugins: [ 5 'karma-mocha', 6 'karma-chai', 7 'karma-chrome-launcher', 8 'karma-firefox-launcher' 9 ], 10 browsers: ['Firefox'], 11 // browsers: ['Safari', 'Chrome', 'ChromeCanary', 'Firefox', 'IE'], 12 basePath: '..', 13 files: [ 14 // Populated in `grunt test` task. 15 ], 16 singleRun: true, 17 port: 9876, 18 reporters: ['dots'], 19 colors: true, 20 autoWatch: false, 21 }); 22}; 23