-
Notifications
You must be signed in to change notification settings - Fork 1
/
jest.config.js
26 lines (26 loc) · 1012 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
/*
* ---------------------------------------------------------------------------------------------
* 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"],
prettierPath: null,
testEnvironment: "jsdom",
testRegex: "src/.*(test|spec)\\.(jsx?|tsx?)$",
testEnvironmentOptions: {
url: "http://localhost/",
},
transform: {
"^.+\\.(js|jsx|ts|tsx)$": [
"ts-jest",
{ tsconfig: "./tsconfig.test.json", diagnostics: false, isolatedModules: true },
],
},
transformIgnorePatterns: ["node_modules"],
resetMocks: true,
};