web: only check for encryption-key length

This commit is contained in:
Abdullah Atta
2022-11-23 16:17:48 +05:00
parent ea07672a2d
commit 77c9db0faa

View File

@@ -61,7 +61,7 @@ test("check recovery key of user", async ({ page }) => {
USER.CURRENT.password &&
(await settings.getRecoveryKey(USER.CURRENT.password));
expect(key).toBe(USER.CURRENT.key);
expect(key?.length).toBeGreaterThan(0);
});
test("login user & wait for sync", async ({ page }, info) => {