1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-22 04:13:49 +00:00

chore(merge): Fixed date initialization on test

This commit is contained in:
Todd Martin
2025-12-26 15:28:58 -05:00
committed by GitHub
parent 91991d2da6
commit 5c13b07366

View File

@@ -107,7 +107,7 @@ describe("LoginDecryptionOptionsComponent", () => {
email: mockEmail,
name: "Test User",
emailVerified: true,
creationDate: new Date().toISOString(),
creationDate: new Date(),
});
platformUtilsService.getClientType.mockReturnValue(ClientType.Browser);
deviceTrustService.getShouldTrustDevice.mockResolvedValue(true);