test(logs): use project alias in cache token coverage

This commit is contained in:
diegosouzapw
2026-08-10 07:24:26 -03:00
parent e6a4dfc72b
commit 9612b0d909

View File

@@ -18,10 +18,8 @@ vi.mock("@/store/emailPrivacyStore", () => ({
default: () => ({ emailsVisible: true }),
}));
const RequestLoggerV2 = (await import("../../../src/shared/components/RequestLoggerV2.tsx"))
.default;
const RequestLoggerDetail = (await import("../../../src/shared/components/RequestLoggerDetail.tsx"))
.default;
const RequestLoggerV2 = (await import("@/shared/components/RequestLoggerV2")).default;
const RequestLoggerDetail = (await import("@/shared/components/RequestLoggerDetail")).default;
let container: HTMLElement;
let root: Root;