mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-22 11:45:59 +01:00
07c7357825
* Initial commit * Updated stories / Fixed issues with dark theme constrast color * Force colors so bootstrap doesn't override * Fixed text colors / Added initial tests * Added jest debugging ability to components package * Removed spec file * Fixed anchor layout * revert base font-size * [CL-28] fixed indentation, used focus-visible, adjusted disabled colors * [CL-28] Reduced ring thickness to better match figma * [CL-28] Updated story link * [CL-44] [CL-28] Updated tabs disabled color / Converted to rgb format with helper
23 lines
667 B
JavaScript
23 lines
667 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/components/jest.config.js",
|
|
"<rootDir>/libs/electron/jest.config.js",
|
|
"<rootDir>/libs/node/jest.config.js",
|
|
],
|
|
};
|