forked from IgniteUI/igniteui-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.ts
60 lines (47 loc) · 1.35 KB
/
karma.conf.ts
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
import { ConfigOptions } from "karma";
import webpackTestConfig from "./webpack-test.config";
export default (config) => {
config.set({
basePath: "",
frameworks: ["jasmine"],
files: [
"./dist/igniteui-angular.css",
{
pattern: "./dist/fonts/*",
watched: false,
included: false,
served: true,
nocache: false
},
"./node_modules/hammerjs/hammer.js",
"./node_modules/hammer-simulator/index.js",
"karma-test-entry.ts"
],
preprocessors: {
"karma-test-entry.ts": ["webpack", "sourcemap"]
},
webpack: webpackTestConfig,
webpackMiddleware: {
noInfo: true,
stats: {
chunks: false
}
},
mime: {
"text/x-typescript": ["ts"]
},
coverageIstanbulReporter: {
reports: ["text-summary", "html", "lcovonly"],
fixWebpackSourcePaths: true
},
reporters: ["mocha", "coverage-istanbul"],
logLevel: config.LOG_WARN,
browsers: ["Chrome"],
browserConsoleLogOptions: {
terminal: true,
level: "log"
},
singleRun: true,
colors: true
} as ConfigOptions);
};