mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-03 08:49:50 +01:00
4a1c3eb1ec
* Create base jest.config file * Fix various tests that were broken * Add maxWorkers to jest config * Undo change to testEnvironment * Enable tsconfig.spec.json
15 lines
389 B
JavaScript
15 lines
389 B
JavaScript
const { pathsToModuleNameMapper } = require("ts-jest");
|
|
|
|
const { compilerOptions } = require("../shared/tsconfig.libs");
|
|
|
|
const sharedConfig = require("../../libs/shared/jest.config.base");
|
|
|
|
module.exports = {
|
|
...sharedConfig,
|
|
preset: "ts-jest",
|
|
testEnvironment: "jsdom",
|
|
moduleNameMapper: pathsToModuleNameMapper(compilerOptions?.paths || {}, {
|
|
prefix: "<rootDir>/",
|
|
}),
|
|
};
|