diff --git a/integration-tests/__tests__/__snapshots__/failures.test.js.snap b/integration-tests/__tests__/__snapshots__/failures.test.js.snap index 882190669688..e2c73766829e 100644 --- a/integration-tests/__tests__/__snapshots__/failures.test.js.snap +++ b/integration-tests/__tests__/__snapshots__/failures.test.js.snap @@ -118,6 +118,7 @@ exports[`not throwing Error objects 5`] = ` 26 | test('Error during test', () => { 27 | // eslint-disable-next-line no-undef > 28 | doesNotExist.alsoThisNot; + | ^ 29 | }); 30 | 31 | test('done(Error)', done => { @@ -131,6 +132,7 @@ exports[`not throwing Error objects 5`] = ` 30 | 31 | test('done(Error)', done => { > 32 | done(new Error('this is an error')); + | ^ 33 | }); 34 | 35 | test('done(non-error)', done => { @@ -151,6 +153,7 @@ exports[`not throwing Error objects 5`] = ` 34 | 35 | test('done(non-error)', done => { > 36 | done(deepObject); + | ^ 37 | }); 38 | diff --git a/integration-tests/__tests__/__snapshots__/globals.test.js.snap b/integration-tests/__tests__/__snapshots__/globals.test.js.snap index 7318ba3ca0a3..56a97cf22209 100644 --- a/integration-tests/__tests__/__snapshots__/globals.test.js.snap +++ b/integration-tests/__tests__/__snapshots__/globals.test.js.snap @@ -29,7 +29,7 @@ exports[`cannot test with no implementation 1`] = ` 1 | 2 | it('it', () => {}); > 3 | it('it, no implementation'); - | ^ + | ^ 4 | test('test, no implementation'); 5 | @@ -57,7 +57,7 @@ exports[`cannot test with no implementation with expand arg 1`] = ` 1 | 2 | it('it', () => {}); > 3 | it('it, no implementation'); - | ^ + | ^ 4 | test('test, no implementation'); 5 |