New boilerplate

This commit is contained in:
Christian Alfoni
2014-10-27 15:28:16 +01:00
parent 54bbfd3ce2
commit 633e48461c
29 changed files with 2609 additions and 29544 deletions

View File

@@ -12,9 +12,8 @@ module.exports = function(config) {
// list of files / patterns to load in the browser
files: [
'utils/es5-shim.js',
'es5-shim.js',
'tests/**/*.js'
// 'server/**/*.js'
],
@@ -27,7 +26,6 @@ module.exports = function(config) {
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: {
'tests/**/*.js': ['browserify']
// 'server/**/*.js': ['browserify']
},
@@ -57,7 +55,7 @@ module.exports = function(config) {
// enable / disable watching file and executing tests whenever any file changes
autoWatch: false,
autoWatch: true,
// start these browsers
@@ -68,6 +66,6 @@ module.exports = function(config) {
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: true
singleRun: false
});
};
};