Skip to content

Commit

Permalink
Test next step
Browse files Browse the repository at this point in the history
  • Loading branch information
mrruby committed Jul 18, 2024
1 parent 00a20cb commit 409b0b4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/needsSetup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ export default async function needsSetupTest(browser: Browser) {

await signUpButton.click();

console.log(await page.content());
await new Promise((resolve) => setTimeout(resolve, 2000));

const pageContent = await page.content();
console.log(pageContent);

const needsSetupText = await findTextOnPage('NeedsSetup');
expect(needsSetupText).toBeTruthy();
Expand Down

0 comments on commit 409b0b4

Please sign in to comment.