Blame view

node_modules/psl/karma.conf.js 499 Bytes
aaac7fed   liuqimichale   add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  'use strict';
  
  
  module.exports = function (config) {
  
    config.set({
  
      browsers: ['PhantomJS'],
  
      frameworks: ['browserify', 'mocha'],
  
      files: [
        'test/**/*.spec.js'
      ],
  
      preprocessors: {
        'test/**/*.spec.js': ['browserify']
      },
  
      reporters: ['mocha'],
  
      client: {
        mocha: {
          reporter: 'tap'
        }
      },
  
      plugins: [
        'karma-browserify',
        'karma-mocha',
        'karma-mocha-reporter',
        'karma-phantomjs-launcher'
      ]
  
    });
  
  };