1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-31 00:33:33 +00:00

Remove unused tests

This commit is contained in:
Bernd Schoolmann
2025-12-08 19:35:22 +01:00
parent f3cdfc896b
commit 033282f4f5

View File

@@ -98,19 +98,6 @@ describe("EncString", () => {
encryptService,
);
});
it("decrypts correctly", async () => {
const decrypted = await encString.decrypt(null);
expect(decrypted).toBe("decrypted");
});
it("result should be cached", async () => {
const decrypted = await encString.decrypt(null);
expect(encryptService.decryptString).toBeCalledTimes(1);
expect(decrypted).toBe("decrypted");
});
});
});