Skip to content

Commit

Permalink
chore: updated screenshots path.
Browse files Browse the repository at this point in the history
  • Loading branch information
ezeikel committed Dec 11, 2024
1 parent 6aeb4f3 commit dbbf24c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/web/tests/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ import { expect, test } from "@playwright/test";
test("basic test", async ({ page }) => {
await page.goto("http://localhost:3000");

await page.screenshot({ path: "screenshots/screenshot.png", fullPage: true });
await page.screenshot({
path: "tests/screenshots/screenshot.png",
fullPage: true,
});

const title = await page.title();
expect(title).toBe(
Expand Down

0 comments on commit dbbf24c

Please sign in to comment.