mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
19 lines
546 B
JavaScript
19 lines
546 B
JavaScript
|
const { pathsToModuleNameMapper } = require("ts-jest/utils");
|
||
|
|
||
|
const { compilerOptions } = require("./tsconfig");
|
||
|
|
||
|
module.exports = {
|
||
|
name: "angular",
|
||
|
displayName: "angular tests",
|
||
|
preset: "jest-preset-angular",
|
||
|
roots: ["<rootDir>/spec/"],
|
||
|
testMatch: ["**/+(*.)+(spec).+(ts)"],
|
||
|
setupFilesAfterEnv: ["<rootDir>/spec/test.ts"],
|
||
|
collectCoverage: true,
|
||
|
coverageReporters: ["html", "lcov"],
|
||
|
coverageDirectory: "coverage",
|
||
|
moduleNameMapper: pathsToModuleNameMapper(compilerOptions?.paths || {}, {
|
||
|
prefix: "<rootDir>/",
|
||
|
}),
|
||
|
};
|