-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
jest.config.js
65 lines (63 loc) · 1.23 KB
/
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
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
/*
* Copyright (c) Jupyter Development Team.
* Distributed under the terms of the Modified BSD License.
*/
const func = require('@jupyterlab/testutils/lib/jest-config');
const jlabConfig = func(__dirname);
const esModules = [
'@codemirror',
'@jupyterlab',
'@jupyter',
'lib0',
'lib0/websocket',
'nanoid',
'vscode\\-ws\\-jsonrpc',
'y\\-protocols',
'y\\-websocket',
'y\\-webrtc',
'yjs'
].join('|');
/*
const {
moduleFileExtensions,
moduleNameMapper,
preset,
setupFilesAfterEnv,
setupFiles,
testPathIgnorePatterns,
transform
} = jlabConfig;
*/
module.exports = {
/*
...jlabConfig,
moduleFileExtensions,
moduleNameMapper,
preset,
setupFilesAfterEnv,
setupFiles,
testPathIgnorePatterns,
transform,
automock: false,
*/
// collectCoverageFrom: [
// 'src/**/*.{ts,tsx}',
// '!src/**/*.d.ts',
// '!src/**/.ipynb_checkpoints/*'
// ],
/*
coverageDirectory: 'coverage',
coverageReporters: ['lcov', 'text'],
globals: {
'ts-jest': {
tsconfig: 'tsconfig.json'
}
},
*/
testRegex: "(/src/__tests__/.*(test|spec))\\.[jt]sx?$",
transformIgnorePatterns: [`/node_modules/(?!${esModules}).+`],
transform: {
"^.+\\.(ts)$": "ts-jest",
},
preset: "jest-playwright-preset",
}