This repository has been archived by the owner on Jul 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
karma.conf.js
96 lines (85 loc) · 2.07 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
var path = require('path');
var webpack = require('webpack');
module.exports = function(karma) {
'use strict';
karma.set({
basePath: __dirname,
frameworks: ['jasmine'],
files: [
{ pattern: 'tests.bundle.ts', watched: false }
],
exclude: [],
preprocessors: {
'tests.bundle.ts': ['coverage', 'webpack', 'sourcemap']
},
reporters: ['mocha', 'coverage'],
coverageReporter: {
dir: 'coverage/',
reporters: [
{ type: 'text-summary' },
{ type: 'json' },
{ type: 'html' }
]
},
mime: {
'text/x-typescript': ['ts', 'tsx']
},
browsers: ['Chrome'],
port: 9018,
runnerPort: 9101,
colors: true,
logLevel: karma.LOG_INFO,
autoWatch: true,
singleRun: false,
webpackServer: { noInfo: true },
webpack: {
devtool: 'inline-source-map',
resolve: {
extensions: ['.ts', '.js']
},
module: {
loaders: [
{
enforce: 'pre',
test: /\.ts$/,
loader: 'tslint-loader',
exclude: [
/node_modules/
]
},
{
test: /\.ts?$/,
exclude: /(node_modules)/,
loader: 'awesome-typescript-loader'
},
{
enforce: 'post',
test: /\.(js|ts)$/, loader: 'istanbul-instrumenter-loader',
include: path.resolve(__dirname, 'src'),
exclude: [
/\.(e2e|spec|bundle)\.ts$/,
/node_modules/
]
}
]
},
plugins: [
new webpack.LoaderOptionsPlugin({
options: {
tslint: {
emitErrors: false,
failOnHint: false,
resourcePath: 'src'
}
}
}),
new webpack.ContextReplacementPlugin(
// The (\\|\/) piece accounts for path separators in *nix and Windows
/angular(\\|\/)core(\\|\/)(esm(\\|\/)src|src)(\\|\/)linker/,
path.resolve('src'),
{}
)
]
}
});
};