Sean Condon | 83fc39f | 2018-04-19 18:56:13 +0100 | [diff] [blame] | 1 | // Karma configuration file, see link for more information |
| 2 | // https://karma-runner.github.io/1.0/config/configuration-file.html |
| 3 | |
| 4 | module.exports = function (config) { |
| 5 | config.set({ |
| 6 | basePath: '', |
| 7 | frameworks: ['jasmine', '@angular-devkit/build-angular'], |
| 8 | plugins: [ |
| 9 | require('karma-jasmine'), |
| 10 | require('karma-chrome-launcher'), |
Sean Condon | 2bd11b7 | 2018-06-15 08:00:48 +0100 | [diff] [blame] | 11 | require('karma-firefox-launcher'), |
Sean Condon | 83fc39f | 2018-04-19 18:56:13 +0100 | [diff] [blame] | 12 | require('karma-jasmine-html-reporter'), |
| 13 | require('karma-coverage-istanbul-reporter'), |
| 14 | require('@angular-devkit/build-angular/plugins/karma') |
| 15 | ], |
| 16 | client:{ |
| 17 | clearContext: false // leave Jasmine Spec Runner output visible in browser |
| 18 | }, |
| 19 | coverageIstanbulReporter: { |
| 20 | dir: require('path').join(__dirname, 'coverage'), reports: [ 'html', 'lcovonly' ], |
| 21 | fixWebpackSourcePaths: true |
| 22 | }, |
| 23 | angularCli: { |
| 24 | environment: 'dev' |
| 25 | }, |
| 26 | reporters: ['progress', 'kjhtml'], |
| 27 | port: 9876, |
| 28 | colors: true, |
| 29 | logLevel: config.LOG_INFO, |
| 30 | autoWatch: true, |
Sean Condon | 2bd11b7 | 2018-06-15 08:00:48 +0100 | [diff] [blame] | 31 | browsers: ['Chrome', 'Firefox'], |
Sean Condon | 83fc39f | 2018-04-19 18:56:13 +0100 | [diff] [blame] | 32 | singleRun: false |
| 33 | }); |
| 34 | }; |