mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-08 09:43:42 +01:00
21 lines
631 B
JavaScript
21 lines
631 B
JavaScript
|
const { pathsToModuleNameMapper } = require("ts-jest");
|
||
|
|
||
|
const { compilerOptions } = require("../shared/tsconfig.libs");
|
||
|
|
||
|
const sharedConfig = require("../../libs/shared/jest.config.angular");
|
||
|
|
||
|
/** @type {import('jest').Config} */
|
||
|
module.exports = {
|
||
|
...sharedConfig,
|
||
|
displayName: "libs/key management tests",
|
||
|
preset: "jest-preset-angular",
|
||
|
setupFilesAfterEnv: ["<rootDir>/test.setup.ts"],
|
||
|
moduleNameMapper: pathsToModuleNameMapper(
|
||
|
// lets us use @bitwarden/common/spec in tests
|
||
|
{ "@bitwarden/common/spec": ["../common/spec"], ...(compilerOptions?.paths ?? {}) },
|
||
|
{
|
||
|
prefix: "<rootDir>/",
|
||
|
},
|
||
|
),
|
||
|
};
|