Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
KevLehman committed Oct 22, 2024
1 parent acc83e9 commit 15233a1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions apps/meteor/tests/e2e/e2e-encryption.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ test.describe.serial('e2e-encryption initial setup', () => {
await poHomeChannel.sidenav.inputChannelName.fill(faker.string.uuid());
await poHomeChannel.sidenav.advancedSettingsAccordion.click();

expect(poHomeChannel.sidenav.checkboxEncryption).toBeDisabled();
await expect(poHomeChannel.sidenav.checkboxEncryption).toBeDisabled();
});

test('expect user to enter a valid e2ee password', async ({ page }) => {
Expand All @@ -101,10 +101,9 @@ test.describe.serial('e2e-encryption initial setup', () => {
await poHomeChannel.sidenav.inputChannelName.fill(faker.string.uuid());
await poHomeChannel.sidenav.advancedSettingsAccordion.click();

expect(poHomeChannel.sidenav.checkboxEncryption).not.toBeDisabled();
await expect(poHomeChannel.sidenav.checkboxEncryption).not.toBeDisabled();
});


test('expect change the e2ee password', async ({ page }) => {
// Change the password to a new one and test it
const newPassword = 'new password';
Expand Down

0 comments on commit 15233a1

Please sign in to comment.