Skip to content

Commit d3334ee

Browse files
committed
chore: apply prettier auto-fixes
1 parent f041c16 commit d3334ee

1 file changed

Lines changed: 14 additions & 17 deletions

File tree

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

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -50,22 +50,19 @@ describe('Smoke', () => {
5050
// on it. The first three `it`s above already cover "harness
5151
// attaches + window is mapped + DOM rendered" which is what smoke
5252
// is for.
53-
it.skip(
54-
'(SKIPPED — see above) reaches a logged-in route after auth + onboarding',
55-
async () => {
56-
await waitForAppReady(10_000);
57-
let hash = '';
58-
await browser.waitUntil(
59-
async () => {
60-
hash = (await browser.execute(() => window.location.hash)) as string;
61-
return /^#\/(home|onboarding)/.test(hash);
62-
},
63-
{ timeout: 15_000, timeoutMsg: 'hash never settled to #/home or #/onboarding' }
64-
);
65-
if (hash.startsWith('#/home')) {
66-
const homeText = await waitForHomePage(15_000);
67-
expect(homeText).toBeTruthy();
68-
}
53+
it.skip('(SKIPPED — see above) reaches a logged-in route after auth + onboarding', async () => {
54+
await waitForAppReady(10_000);
55+
let hash = '';
56+
await browser.waitUntil(
57+
async () => {
58+
hash = (await browser.execute(() => window.location.hash)) as string;
59+
return /^#\/(home|onboarding)/.test(hash);
60+
},
61+
{ timeout: 15_000, timeoutMsg: 'hash never settled to #/home or #/onboarding' }
62+
);
63+
if (hash.startsWith('#/home')) {
64+
const homeText = await waitForHomePage(15_000);
65+
expect(homeText).toBeTruthy();
6966
}
70-
);
67+
});
7168
});

0 commit comments

Comments
 (0)