From ff045df805121c5ad6b3253d117e1541c4a4ff12 Mon Sep 17 00:00:00 2001 From: David Karl Date: Fri, 4 Oct 2024 13:03:14 +1300 Subject: [PATCH] Forced error --- features/steps/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/features/steps/index.ts b/features/steps/index.ts index a5b2748..b8cc9a2 100644 --- a/features/steps/index.ts +++ b/features/steps/index.ts @@ -11,4 +11,6 @@ When("I click link {string}", async ({ page }, name: string) => { Then("I see in title {string}", async ({ page }, text: string) => { await expect(page).toHaveTitle(new RegExp(text)); + + throw new Error("Fail here"); });