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/); +});