Skip to content

Commit

Permalink
Temp workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
otociulis committed Dec 6, 2024
1 parent fcc4c6a commit fe733ef
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion tests/integration/example.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,30 @@ test('has title', async () => {
await getStartedButton.click();

await expect(page.getByText("Choose Installation Location")).toBeVisible();


await page.screenshot({ path: 'screenshot-get-started.png' });

const nextButton = page.getByText("Next")

await expect(nextButton).toBeVisible();
await expect(nextButton).toBeEnabled();

await nextButton.click();

await expect(page.getByText("Migrate from Existing Installation")).toBeVisible();

await page.screenshot({ path: 'screenshot-migrate.png' });

await nextButton.click();

await expect(page.getByText("Desktop App Settings")).toBeVisible();

const installButton = page.getByText("Install")

await expect(installButton).toBeVisible();
await expect(installButton).toBeEnabled();

await installButton.click();


});

0 comments on commit fe733ef

Please sign in to comment.