-
Notifications
You must be signed in to change notification settings - Fork 26
/
karma.conf.js
121 lines (114 loc) · 2.84 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
110
111
112
113
114
115
116
117
118
119
120
121
const fs = require('fs');
const path = require('path');
const minimist = require('minimist');
module.exports = function(config) {
// Default config for all packages
config.set({
basePath: '',
frameworks: ['mocha'],
browsers: process.env.CI
? ['Chrome']
: ['ChromeCanary'],
// CircleCI needs JUnit to show tests correctly.
// https://circleci.com/docs/1.0/test-metadata/#karma
reporters: process.env.CI
? ['junit', 'progress', 'coverage-istanbul']
: ['progress', 'coverage-istanbul'],
junitReporter: {
outputDir: process.env.CIRCLE_TEST_REPORTS,
},
coverageIstanbulReporter: {
reports: [
'text-summary',
'json',
],
fixWebpackSourcePaths: true,
},
client: {
mocha: {
reporter: 'html',
},
},
exclude: [
'**/*.map',
],
preprocessors: {
'**/*.ts': ['webpack'],
'**/*.js': ['webpack'],
},
webpack: {
mode: 'none',
devtool: 'eval',
stats: 'errors-only',
resolve: {
extensions: ['.js', '.ts'],
mainFields: ['typescript:main', 'jsnext:main', 'main'],
},
module: {
rules: [
{
test: /\.ts$/,
use: [
{
loader: 'ts-loader',
options: {
transpileOnly: true,
},
},
]
},
{
enforce: 'post',
test: /\.ts$/,
include: /packages\/[^/]+\/src\/.*\.(j|t)s?$/,
exclude: path => path.includes('__tests__'),
use: [
{
loader: 'istanbul-instrumenter-loader',
options: {
transpileOnly: true,
esModules: true,
},
},
]
},
],
},
},
// Suppresses some console.log messages when bundle is built
webpackMiddleware: {
stats: {
chunks: false,
},
},
mime: {
'text/x-typescript': ['ts', 'tsx'],
},
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
singleRun: false,
concurrency: Infinity,
});
const argv = minimist(process.argv);
if (argv.only) {
// Run tests for a specific package
if (!fs.existsSync(path.resolve(__dirname, `./packages/${ argv.only }`))) {
throw new Error(`"${ argv.only }" package does not exist!`);
}
config.set({
files: [`packages/${ argv.only }/src/**/__tests__/**`],
});
} else if (argv.grep) {
// Run tests for a subset of all packages by name
config.set({
files: [`packages/*${ argv.grep }*/src/**/__tests__/**`],
});
} else if (!argv.only && !argv.grep) {
// Run all tests
config.set({
files: ['packages/*/src/**/__tests__/**'],
});
}
};