Skip to content

Commit 77f03e4

Browse files
committed
fix: lint error
1 parent 6179e6a commit 77f03e4

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

  • apps/meteor/tests/e2e/page-objects/fragments

apps/meteor/tests/e2e/page-objects/fragments/e2ee.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ abstract class E2EEBanner {
1111
return;
1212
}
1313

14-
await this.root.page().keyboard.press('Escape').catch(() => undefined);
14+
await this.root
15+
.page()
16+
.keyboard.press('Escape')
17+
.catch(() => undefined);
1518
await modalBackdrop.waitFor({ state: 'hidden', timeout: 3_000 }).catch(() => undefined);
1619
}
1720

0 commit comments

Comments
 (0)