From 1297ad20d8b29b843d4925f71ab51a0c3c28dca0 Mon Sep 17 00:00:00 2001 From: platane Date: Sat, 16 Mar 2024 07:46:34 +0100 Subject: [PATCH] . --- packages/e2e/tests/app.spec.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/e2e/tests/app.spec.ts b/packages/e2e/tests/app.spec.ts index 579e945..722f94f 100644 --- a/packages/e2e/tests/app.spec.ts +++ b/packages/e2e/tests/app.spec.ts @@ -8,6 +8,10 @@ test("Should load timezone lines", async ({ page }) => { await expect(page.getByRole("listitem")).toHaveCount(1); }); +test("Should crash", () => { + throw new Error("no"); +}); + test("Should load 3d globe", async ({ page, browserName }) => { page.on("console", (msg) => console.log(msg.text()));