mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-04 09:01:01 +01:00
19 lines
512 B
JavaScript
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",
|
|
],
|
|
};
|