mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-11 10:10:25 +01:00
34f33ebb54
* Configure jest for web * attempt to fix linter fule preventing angular core imports * trial initiation tests * small trial initiation component fix * Small naming fix in tests
16 lines
460 B
JavaScript
16 lines
460 B
JavaScript
const { pathsToModuleNameMapper } = require("ts-jest");
|
|
|
|
const { compilerOptions } = require("./tsconfig");
|
|
|
|
module.exports = {
|
|
collectCoverage: true,
|
|
coverageReporters: ["html", "lcov"],
|
|
coverageDirectory: "coverage",
|
|
preset: "jest-preset-angular",
|
|
setupFilesAfterEnv: ["<rootDir>/test.config.ts"],
|
|
moduleNameMapper: pathsToModuleNameMapper(compilerOptions?.paths || {}, {
|
|
prefix: "<rootDir>/",
|
|
}),
|
|
modulePathIgnorePatterns: ["jslib"],
|
|
};
|