From 479eadf9d94a516785ec44600f426a2667747d7d Mon Sep 17 00:00:00 2001 From: Pengoose Date: Sat, 12 Oct 2024 20:17:08 +0900 Subject: [PATCH] test: remove unImplemented test(test.only.fail) --- tests/playwright-test/types-2.spec.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/playwright-test/types-2.spec.ts b/tests/playwright-test/types-2.spec.ts index ed9df2c033..f794e06798 100644 --- a/tests/playwright-test/types-2.spec.ts +++ b/tests/playwright-test/types-2.spec.ts @@ -68,8 +68,6 @@ test('basics should work', async ({ runTSC }) => { test.describe.skip('title', { tag: '@foo' }, () => {}); test.describe.fixme('title', { tag: '@foo' }, () => {}); test.describe.only('title', { tag: '@foo' }, () => {}); - // @ts-expect-error - test.only.fail('my test', async () => {}); ` }); expect(result.exitCode).toBe(0);