-
Notifications
You must be signed in to change notification settings - Fork 363
/
jest.compat-tests.config.js
48 lines (48 loc) · 1.1 KB
/
jest.compat-tests.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
/** @type {import('jest').Config} */
module.exports = {
testMatch: [
'<rootDir>/compat-tests/fixtures/*/*.compat-test.ts',
'<rootDir>/compat-tests/*.compat-test.ts',
],
moduleNameMapper: {},
modulePathIgnorePatterns: ['<rootDir>/compat-tests/verdaccio'],
automock: false,
// transform: {
// '^.+\\.tsx?$': [
// 'esbuild-jest',
// {
// sourcemap: true,
// },
// ],
// '^.+\\.js$': [
// 'esbuild-jest',
// {
// sourcemap: true,
// },
// ],
// },
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
// these tests take a long time to run, because each of them either runs a full build of a package,
// or tests the build on a browser using playwright
testTimeout: 1000 * 60 * 2,
transform: {
'^.+\\.tsx?$': [
'jest-esbuild',
{
sourcemap: true,
supported: {
'dynamic-import': false,
},
},
],
'^.+\\.js$': [
'jest-esbuild',
{
sourcemap: true,
supported: {
'dynamic-import': false,
},
},
],
},
}