-
Notifications
You must be signed in to change notification settings - Fork 0
/
jest.config.js
35 lines (34 loc) · 994 Bytes
/
jest.config.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
const { dye } = require('@prostojs/dye')
module.exports = {
preset: 'ts-jest',
moduleFileExtensions: [
"ts",
"js"
],
rootDir: __dirname,
testRegex: ".spec.ts$",
transform: {
"^.+\\.(t|j)s$": "ts-jest"
},
coverageDirectory: 'coverage',
coverageReporters: ['html', 'lcov', 'text'],
collectCoverageFrom: [
'src/**/*.ts',
],
watchPathIgnorePatterns: ['/node_modules/', '/dist/', '/.git/'],
testEnvironment: "node",
globals: {
__DYE_RED_BRIGHT__: dye('red-bright').open,
__DYE_BOLD__: dye('bold').open,
__DYE_RESET__: dye.reset,
__DYE_RED__: dye('red').open,
__DYE_COLOR_OFF__: dye('red').close,
__DYE_GREEN__: dye('green').open,
__DYE_GREEN_BRIGHT__: dye('green-bright').open,
__DYE_BLUE__: dye('blue').open,
__DYE_YELLOW__: dye('yellow').open,
__DYE_DIM__: dye('dim').open,
__DYE_DIM_OFF__: dye('dim').close,
__VERSION__: 'JEST_TEST',
}
}