diff --git a/test/core/test/repro.test.ts b/test/core/test/repro1.test.ts similarity index 100% rename from test/core/test/repro.test.ts rename to test/core/test/repro1.test.ts diff --git a/test/core/test/repro2.test.ts b/test/core/test/repro2.test.ts new file mode 100644 index 0000000000000..b5278af32ea2c --- /dev/null +++ b/test/core/test/repro2.test.ts @@ -0,0 +1,22 @@ +import { expect, test } from 'vitest' + +test('repro', () => { + expect(0).toBe(0) +}) + +// TODO +// test('inline same title', () => { +// expect('foo').toMatchInlineSnapshot() +// }) + +// test('inline same title', () => { +// expect('bar').toMatchInlineSnapshot(`"bar"`) +// }) + +// test('file same title', () => { +// expect('foo').toMatchSnapshot() +// }) + +// test('file same title', () => { +// expect('bar').toMatchSnapshot() +// })