test: remove unImplemented test(test.only.fail)

This commit is contained in:
Pengoose 2024-10-12 20:17:08 +09:00 committed by pengoosedev
parent b0ccd000e0
commit 479eadf9d9

View file

@ -68,8 +68,6 @@ test('basics should work', async ({ runTSC }) => {
test.describe.skip('title', { tag: '@foo' }, () => {}); test.describe.skip('title', { tag: '@foo' }, () => {});
test.describe.fixme('title', { tag: '@foo' }, () => {}); test.describe.fixme('title', { tag: '@foo' }, () => {});
test.describe.only('title', { tag: '@foo' }, () => {}); test.describe.only('title', { tag: '@foo' }, () => {});
// @ts-expect-error
test.only.fail('my test', async () => {});
` `
}); });
expect(result.exitCode).toBe(0); expect(result.exitCode).toBe(0);