We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a416546 commit 5c53103Copy full SHA for 5c53103
1 file changed
app/test/e2e/specs/notifications.spec.ts
@@ -36,14 +36,13 @@ async function waitForNotificationsSections(timeout = 10_000): Promise<void> {
36
await browser.waitUntil(
37
async () =>
38
(await browser.execute(() => {
39
- const integration = document.querySelector('[data-testid="integration-notifications-section"]');
+ const integration = document.querySelector(
40
+ '[data-testid="integration-notifications-section"]'
41
+ );
42
const system = document.querySelector('[data-testid="system-events-section"]');
43
return integration !== null && system !== null;
44
})) === true,
- {
- timeout,
45
- timeoutMsg: 'Notifications sections did not render in time',
46
- }
+ { timeout, timeoutMsg: 'Notifications sections did not render in time' }
47
);
48
}
49
0 commit comments