-
Notifications
You must be signed in to change notification settings - Fork 2
/
jest.config.js
40 lines (40 loc) · 1.44 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
/*
* ---------------------------------------------------------------------------------------------
* Copyright (c) Quatico Solutions AG. All rights reserved.
* Licensed under the MIT License. See LICENSE in the project root for license information.
* ---------------------------------------------------------------------------------------------
*/
module.exports = {
preset: "ts-jest",
collectCoverageFrom: ["**/*.{ts,tsx}"],
coverageDirectory: "coverage",
coveragePathIgnorePatterns: ["index.ts", "test/*"],
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"],
moduleNameMapper: {
"@quatico/magellan-shared": "<rootDir>/packages/shared/src",
"@quatico/magellan-client": "<rootDir>/packages/client/src",
"@quatico/magellan-server": "<rootDir>/packages/server/src",
},
setupFilesAfterEnv: ["<rootDir>/jest.setup.ts"],
testRegex: ".*spec\\.(jsx?|tsx?)$",
testEnvironmentOptions: { url: "http://localhost/" },
transform: {
"^.+\\.(js|jsx|ts|tsx)$": [
"@swc/jest",
{
jsc: {
parser: {
syntax: "typescript",
},
transform: {
react: {
runtime: "automatic",
},
},
},
},
],
},
resetMocks: true,
watchman: false,
};