mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
882a432ca6
This is a copy of the files. The source in `@bitwarden/common` will be deleted once all of the applications have been ported to the library.
14 lines
420 B
JavaScript
14 lines
420 B
JavaScript
const { pathsToModuleNameMapper } = require("ts-jest");
|
|
|
|
const { compilerOptions } = require("../../../shared/tsconfig.libs");
|
|
|
|
/** @type {import('jest').Config} */
|
|
module.exports = {
|
|
testMatch: ["**/+(*.)+(spec).+(ts)"],
|
|
preset: "ts-jest",
|
|
testEnvironment: "../../../shared/test.environment.ts",
|
|
moduleNameMapper: pathsToModuleNameMapper(compilerOptions?.paths || {}, {
|
|
prefix: "<rootDir>/../../",
|
|
}),
|
|
};
|