diff --git a/e2e/snapshot-concurrent/__tests__/__snapshots__/works.test.js.snap b/e2e/snapshot-concurrent/__tests__/__snapshots__/works.test.js.snap index aa2ad88dc90d..9564f5b6664f 100644 --- a/e2e/snapshot-concurrent/__tests__/__snapshots__/works.test.js.snap +++ b/e2e/snapshot-concurrent/__tests__/__snapshots__/works.test.js.snap @@ -12,6 +12,10 @@ exports[`A c 1`] = `"Ac1"`; exports[`A c 2`] = `"Ac2"`; +exports[`A d 1`] = `"Ad1"`; + +exports[`A d 2`] = `"Ad2"`; + exports[`B 1`] = `"B1"`; exports[`B 2`] = `"B2"`; @@ -19,3 +23,7 @@ exports[`B 2`] = `"B2"`; exports[`C 1`] = `"C1"`; exports[`C 2`] = `"C2"`; + +exports[`D 1`] = `"D1"`; + +exports[`D 2`] = `"D2"`; diff --git a/e2e/snapshot-concurrent/__tests__/works.test.js b/e2e/snapshot-concurrent/__tests__/works.test.js index fdc184cc787a..dd59e404cf88 100644 --- a/e2e/snapshot-concurrent/__tests__/works.test.js +++ b/e2e/snapshot-concurrent/__tests__/works.test.js @@ -26,6 +26,11 @@ describe('A', () => { expect('Ac1').toMatchSnapshot(); expect('Ac2').toMatchSnapshot(); }); + + it('d', () => { + expect('Ad1').toMatchSnapshot(); + expect('Ad2').toMatchSnapshot(); + }); }); it.concurrent('B', async () => { @@ -34,7 +39,12 @@ it.concurrent('B', async () => { expect('B2').toMatchSnapshot(); }); -it.concurrent('C', async () => { +it('C', () => { expect('C1').toMatchSnapshot(); expect('C2').toMatchSnapshot(); }); + +it.concurrent('D', async () => { + expect('D1').toMatchSnapshot(); + expect('D2').toMatchSnapshot(); +});