-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjest.config.js
37 lines (37 loc) · 1.39 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
/*
* ---------------------------------------------------------------------------------------------
* Copyright (c) Quatico Solutions AG. All rights reserved.
* Licensed under the MIT License. See LICENSE in the project root for license information.
* ---------------------------------------------------------------------------------------------
*/
module.exports = {
collectCoverageFrom: ["./src/**/*.{ts,tsx}"],
coverageDirectory: "coverage",
coveragePathIgnorePatterns: ["index.ts"],
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"],
moduleNameMapper: {
"@quatico/websmith-api": "<rootDir>/packages/api/src",
"@quatico/websmith-compiler": "<rootDir>/packages/compiler/src",
"@quatico/websmith-core": "<rootDir>/packages/core/src",
"@quatico/websmith-testing": "<rootDir>/packages/testing/src",
"@quatico/websmith-webpack": "<rootDir>/packages/webpack/src",
},
prettierPath: null,
setupFilesAfterEnv: ["<rootDir>/jest.setup.ts"],
testRegex: "src/.*spec\\.(tsx?)$",
transform: {
"^.+\\.(js|ts)$": [
"@swc/jest",
{
jsc: {
parser: {
syntax: "typescript",
},
},
},
],
},
transformIgnorePatterns: ["node_modules"],
resetMocks: true,
clearMocks: true,
};