From 7400af0753a61f02eaf81d1615377afa1e5a2ffb Mon Sep 17 00:00:00 2001 From: Daria Domina Date: Sun, 26 Oct 2025 15:28:22 +0100 Subject: [PATCH] add a failing spec --- tests/failing.spec.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/failing.spec.ts diff --git a/tests/failing.spec.ts b/tests/failing.spec.ts new file mode 100644 index 0000000..1371b10 --- /dev/null +++ b/tests/failing.spec.ts @@ -0,0 +1,8 @@ +import { test, expect } from '@playwright/test'; + +test('failing test', { tag: ['@p0'] }, async ({ page }) => { + await page.goto('https://playwright.dev/'); + + // Expect a title "to contain" a substring. + await expect(page).toHaveTitle(/Failing/); +});