mirror of
https://github.com/bitwarden/browser
synced 2026-02-07 04:03:29 +00:00
fix(dirt/card): correct tsconfig path in jest configuration
Fix the relative path to tsconfig.base in the dirt/card library's Jest config. The path was incorrectly using four parent directory traversals (../../../../) when only three (../../../) were needed to reach the project root.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
const { pathsToModuleNameMapper } = require("ts-jest");
|
||||
|
||||
const { compilerOptions } = require("../../../../tsconfig.base");
|
||||
const { compilerOptions } = require("../../../tsconfig.base");
|
||||
|
||||
const sharedConfig = require("../../shared/jest.config.angular");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user