mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-02 08:40:08 +01:00
5c576fd19e
* add libs/vault * update configs * update package lock * fix typo
17 lines
499 B
JavaScript
17 lines
499 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/vault tests",
|
|
preset: "jest-preset-angular",
|
|
setupFilesAfterEnv: ["<rootDir>/test.setup.ts"],
|
|
moduleNameMapper: pathsToModuleNameMapper(compilerOptions?.paths || {}, {
|
|
prefix: "<rootDir>/",
|
|
}),
|
|
};
|