Index: appengine_apps/trooper_o_matic/karma.conf.js |
diff --git a/appengine_apps/trooper_o_matic/karma.conf.js b/appengine_apps/trooper_o_matic/karma.conf.js |
deleted file mode 100644 |
index 0467a04a68d7f934a37becf728daa660034f6f43..0000000000000000000000000000000000000000 |
--- a/appengine_apps/trooper_o_matic/karma.conf.js |
+++ /dev/null |
@@ -1,71 +0,0 @@ |
-// Karma configuration |
-// Generated on Tue Oct 07 2014 15:12:58 GMT+1100 (EST) |
- |
-module.exports = function(config) { |
- config.set({ |
- |
- // base path that will be used to resolve all patterns (eg. files, exclude) |
- basePath: '', |
- |
- |
- // frameworks to use |
- // available frameworks: https://npmjs.org/browse/keyword/karma-adapter |
- frameworks: ['mocha'], |
- |
- |
- // list of files / patterns to load in the browser |
- files: [ |
- 'bower_components/platform/platform.js', |
- 'bower_components/chai/chai.js', |
- 'bower_components/sugar/release/sugar-full.development.js', |
- 'test/karma-loader.html', |
- '{lib,model,ui}/test/*', |
- {pattern: 'bower_components/**/*.{js,html,css,map}', included: false}, |
- {pattern: '{lib,model,ui}/*', included: false}, |
- ], |
- |
- |
- // list of files to exclude |
- exclude: [ |
- ], |
- |
- |
- // preprocess matching files before serving them to the browser |
- // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor |
- preprocessors: { |
- }, |
- |
- |
- // test results reporter to use |
- // possible values: 'dots', 'progress' |
- // available reporters: https://npmjs.org/browse/keyword/karma-reporter |
- reporters: ['progress'], |
- |
- |
- // web server port |
- port: 9876, |
- |
- |
- // enable / disable colors in the output (reporters and logs) |
- colors: true, |
- |
- |
- // level of logging |
- // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG |
- logLevel: config.LOG_INFO, |
- |
- |
- // enable / disable watching file and executing tests whenever any file changes |
- autoWatch: true, |
- |
- |
- // start these browsers |
- // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher |
- browsers: ['Chrome'], |
- |
- |
- // Continuous Integration mode |
- // if true, Karma captures browsers, runs the tests and exits |
- singleRun: false |
- }); |
-}; |