freifunksearch

Moved to https://github.com/FreifunkSearchProjekt
git clone git://archive.git.mtrnord.blog/MTRNord/freifunksearch.git
Log | Files | Refs | README | LICENSE

karma.conf.js (923B)


      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/cli'],
      8     plugins: [
      9       require('karma-jasmine'),
     10       require('karma-chrome-launcher'),
     11       require('karma-jasmine-html-reporter'),
     12       require('karma-coverage-istanbul-reporter'),
     13       require('@angular/cli/plugins/karma')
     14     ],
     15     client:{
     16       clearContext: false // leave Jasmine Spec Runner output visible in browser
     17     },
     18     coverageIstanbulReporter: {
     19       reports: [ 'html', 'lcovonly' ],
     20       fixWebpackSourcePaths: true
     21     },
     22     angularCli: {
     23       environment: 'dev'
     24     },
     25     reporters: ['progress', 'kjhtml'],
     26     port: 9876,
     27     colors: true,
     28     logLevel: config.LOG_INFO,
     29     autoWatch: true,
     30     browsers: ['Chrome'],
     31     singleRun: false
     32   });
     33 };