1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

Fix Test Typos

This commit is contained in:
Justin Baur
2024-05-28 08:00:58 -04:00
parent 837f141e13
commit d77dcff4c1

View File

@@ -497,7 +497,7 @@ describe("cryptoService", () => {
});
}
it("returns decryption keys when there are not org or provider keys set", async () => {
it("returns decryption keys when there are no org or provider keys set", async () => {
updateKeys({
userKey: makeSymmetricCryptoKey<UserKey>(64),
encryptedPrivateKey: makeEncString("privateKey"),
@@ -586,7 +586,7 @@ describe("cryptoService", () => {
});
it("returns a stream that pays attention to updates of all data", async () => {
// Start listening until there have been 5 emissions
// Start listening until there have been 6 emissions
const promise = lastValueFrom(
cryptoService.cipherDecryptionKeys$(mockUserId).pipe(bufferCount(6), take(1)),
);