-
Notifications
You must be signed in to change notification settings - Fork 12
/
karma.conf.js
109 lines (93 loc) · 2.82 KB
/
karma.conf.js
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
var path = require('path');
module.exports = function (config) {
var webpackConfig = {
entry: {},
devtool: 'inline-source-map',
module: {
loaders: [{
test: /\.jsx?$/,
loader: 'babel-loader',
exclude: /node_modules/,
query: {
presets: ['es2015']
}
},{
test: /\.css$/,
loader: 'css'
}, {
test: /\.(png|jpg|jpeg|gif|svg)$/,
loader: 'url'
}, {
test: /\.html$/,
loader: 'raw'
},{
test: /\.json$/,
loader: 'file?name=translation/[name].[ext]'
},{
test: /\.scss$/,
loader: "style!css!sass?outputStyle=expanded&includePaths[]="
+ path.resolve(__dirname, "./node_modules/compass-mixins/lib")
},
{test: /\.woff(\?v=\d+\.\d+\.\d+)?$/, loader: 'url'},
{test: /\.woff2(\?v=\d+\.\d+\.\d+)?$/, loader: 'url'},
{test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/, loader: 'url'},
{test: /\.svg(\?v=\d+\.\d+\.\d+)?$/, loader: 'url'},
{test: /\.eot(\?v=\d+\.\d+\.\d+)?$/, loader: 'url'},],
},
resolve: {
root: path.resolve('./src'),
extensions: ['', '.js'],
},
};
var configuration = {
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: '',
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['jasmine'],
// list of files / patterns to load in the browser
files: [
'./test.webpack.config.js'
],
// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: {
'./test.webpack.config.js': ['webpack', 'sourcemap']
},
webpackMiddleware: {
noInfo: true
},
webpack: webpackConfig,
// enable / disable watching file and executing tests whenever any file changes
autoWatch: true,
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: ['Chrome'],
// Which plugins to enable
plugins: [
require('karma-jasmine'),
require('karma-chrome-launcher'),
require('karma-firefox-launcher'),
require("karma-webpack"),
require('karma-sourcemap-loader'),
require('karma-coverage')
],
junitReporter: {
outputFile: 'test_out/unit.xml',
suite: 'unit'
},
customLaunchers: {
Firefox_travis_ci: {
base: 'Firefox',
flags: ['--no-sandbox']
}
},
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: false,
}
if (process.env.TRAVIS) {
configuration.browsers = ['Firefox_travis_ci'];
}
config.set(configuration);
};