Skip to content

Commit

Permalink
fix(e2e): stackblitz template tests fixes (#565)
Browse files Browse the repository at this point in the history
  • Loading branch information
kstala authored Feb 5, 2024
1 parent 93a6048 commit 2d60be6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/e2e-tests/tests/checkStackblitzTemplates.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import { test, expect } from "@playwright/test";
import { HomePage } from "../page-objects/HomePage";

test("Verify stackblitz template", async ({ page }) => {
test.setTimeout(120000);
test.setTimeout(200000);
let homePage: HomePage;
const response = await page.goto("");
homePage = new HomePage(page);
await page.waitForLoadState();
await page.locator("text=Open in New Tab").click();
await page.waitForSelector("text=Open in New Tab");
await page.waitForLoadState("domcontentloaded");
await homePage.wait(10000);

Expand Down

0 comments on commit 2d60be6

Please sign in to comment.