mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-16 10:45:20 +01:00
22 lines
619 B
JavaScript
22 lines
619 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>/apps/browser/jest.config.js",
|
|
"<rootDir>/apps/cli/jest.config.js",
|
|
|
|
"<rootDir>/libs/angular/jest.config.js",
|
|
"<rootDir>/libs/common/jest.config.js",
|
|
"<rootDir>/libs/electron/jest.config.js",
|
|
"<rootDir>/libs/node/jest.config.js",
|
|
],
|
|
};
|