| OLD | NEW |
| 1 // Karma configuration | 1 // Karma configuration |
| 2 // Generated on Tue Oct 07 2014 15:12:58 GMT+1100 (EST) | 2 // Generated on Tue Oct 07 2014 15:12:58 GMT+1100 (EST) |
| 3 | 3 |
| 4 module.exports = function(config) { | 4 module.exports = function(config) { |
| 5 config.set({ | 5 config.set({ |
| 6 | 6 |
| 7 // base path that will be used to resolve all patterns (eg. files, exclude) | 7 // base path that will be used to resolve all patterns (eg. files, exclude) |
| 8 basePath: '', | 8 basePath: '', |
| 9 | 9 |
| 10 | 10 |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 // start these browsers | 62 // start these browsers |
| 63 // available browser launchers: https://npmjs.org/browse/keyword/karma-launc
her | 63 // available browser launchers: https://npmjs.org/browse/keyword/karma-launc
her |
| 64 browsers: ['Chrome'], | 64 browsers: ['Chrome'], |
| 65 | 65 |
| 66 | 66 |
| 67 // Continuous Integration mode | 67 // Continuous Integration mode |
| 68 // if true, Karma captures browsers, runs the tests and exits | 68 // if true, Karma captures browsers, runs the tests and exits |
| 69 singleRun: false | 69 singleRun: false |
| 70 }); | 70 }); |
| 71 }; | 71 }; |
| OLD | NEW |