diff --git a/src/dev/jest/integration_tests/__fixtures__/test.js b/src/dev/jest/integration_tests/__fixtures__/test.js index 4010846a5b71..cec71e2c38f3 100644 --- a/src/dev/jest/integration_tests/__fixtures__/test.js +++ b/src/dev/jest/integration_tests/__fixtures__/test.js @@ -30,6 +30,9 @@ * GitHub history for details. */ -it('fails', () => { +it('fails', (done) => { + setTimeout(() => { + done(); + }, 200); throw new Error('failure'); });