1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-07-01 11:25:46 +02:00
bitwarden-browser/libs/jest.config.js
2022-06-03 16:24:40 +02:00

19 lines
512 B
JavaScript

const { pathsToModuleNameMapper } = require("ts-jest");
const { compilerOptions } = require("./tsconfig");
module.exports = {
collectCoverage: true,
coverageReporters: ["html", "lcov"],
coverageDirectory: "coverage",
moduleNameMapper: pathsToModuleNameMapper(compilerOptions?.paths || {}, {
prefix: "<rootDir>/",
}),
projects: [
"<rootDir>/angular/jest.config.js",
"<rootDir>/common/jest.config.js",
"<rootDir>/electron/jest.config.js",
"<rootDir>/node/jest.config.js",
],
};