Skip to content

Commit 5c53103

Browse files
committed
chore: format notifications E2E spec after review fixes
Apply Prettier formatting adjustments required by pre-push checks. Made-with: Cursor
1 parent a416546 commit 5c53103

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

app/test/e2e/specs/notifications.spec.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,13 @@ async function waitForNotificationsSections(timeout = 10_000): Promise<void> {
3636
await browser.waitUntil(
3737
async () =>
3838
(await browser.execute(() => {
39-
const integration = document.querySelector('[data-testid="integration-notifications-section"]');
39+
const integration = document.querySelector(
40+
'[data-testid="integration-notifications-section"]'
41+
);
4042
const system = document.querySelector('[data-testid="system-events-section"]');
4143
return integration !== null && system !== null;
4244
})) === true,
43-
{
44-
timeout,
45-
timeoutMsg: 'Notifications sections did not render in time',
46-
}
45+
{ timeout, timeoutMsg: 'Notifications sections did not render in time' }
4746
);
4847
}
4948

0 commit comments

Comments
 (0)