mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-03 08:49:50 +01:00
16 lines
453 B
JavaScript
16 lines
453 B
JavaScript
|
const { pathsToModuleNameMapper } = require("ts-jest/utils");
|
||
|
|
||
|
const { compilerOptions } = require("./tsconfig");
|
||
|
|
||
|
module.exports = {
|
||
|
preset: "ts-jest",
|
||
|
testMatch: ["**/+(*.)+(spec).+(ts)"],
|
||
|
setupFilesAfterEnv: ["<rootDir>/spec/test.ts"],
|
||
|
collectCoverage: true,
|
||
|
coverageReporters: ["html", "lcov"],
|
||
|
coverageDirectory: "coverage",
|
||
|
moduleNameMapper: pathsToModuleNameMapper(compilerOptions?.paths || {}, {
|
||
|
prefix: "<rootDir>/",
|
||
|
}),
|
||
|
};
|