diff --git a/tests/__screenshots__/production/dummy.spec.ts/dummy.png b/tests/__screenshots__/production/dummy.spec.ts/dummy.png new file mode 100644 index 0000000..1c30b33 Binary files /dev/null and b/tests/__screenshots__/production/dummy.spec.ts/dummy.png differ diff --git a/tests/dummy.spec.ts b/tests/dummy.spec.ts new file mode 100644 index 0000000..4eb3fe2 --- /dev/null +++ b/tests/dummy.spec.ts @@ -0,0 +1,10 @@ +import { expect, test } from "@playwright/test"; + +// TODO: to be removed +test("dummy test", async ({ page }) => { + await page.goto("https://juno.build"); + + await expect(page).toHaveScreenshot(`dummy.png`, { + fullPage: true, + }); +});