-
Notifications
You must be signed in to change notification settings - Fork 70
/
karma.conf.js
executable file
·68 lines (67 loc) · 1.62 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
const path = require('path');
const webpack = require('webpack');
module.exports = config => {
config.set({
basePath: '',
frameworks: ['jasmine', '@angular-devkit/build-angular'],
files: [
{ pattern: './src/img/*.png', watched: false, included: false, served: true, nocache: false },
{ pattern: './karma-main.js', watched: false }
],
reporters: ['dots'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: false,
browsers: ['PhantomJS'],
singleRun: true,
browserConsoleLogOptions: {
terminal: true,
level: 'log'
},
plugins: [
require('karma-jasmine'),
require('karma-phantomjs-launcher'),
require('karma-webpack'),
require('karma-sourcemap-loader'),
require('@angular-devkit/build-angular/plugins/karma')
],
preprocessors: {
'./karma-main.js': ['webpack', 'sourcemap']
},
webpack: {
mode: 'development',
stats: 'errors-only',
resolve: {
modules: [
'node_modules'
],
extensions: ['.ts', '.js']
},
devtool: 'inline-source-map',
module: {
rules: [
{
test: /\.ts$/,
loader: 'awesome-typescript-loader',
include: [
path.resolve(__dirname, 'src')
]
}
]
},
plugins: [
new webpack.ContextReplacementPlugin(
/@angular(\\|\/)core(\\|\/)src/,
path.resolve(__dirname, '../src')
)
]
},
webpackServer: {
noInfo: true
},
proxies: {
'/src/img/': '/base/src/img/'
}
});
};