Blame view

karma.conf.js 243 Bytes
66ee5529f   Palak Handa   initial commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  'use strict';
  
  module.exports = function(config) {
  
    config.set({
      autoWatch : false,
  
      frameworks: ['jasmine'],
  
      browsers : ['PhantomJS'],
  
      plugins : [
          'karma-phantomjs-launcher',
          'karma-jasmine'
      ]
    });
  };