From 443f74dbdb6ea17b51ff18c3e7bce14d0a2d5413 Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Wed, 16 Nov 2022 15:23:31 -0800 Subject: [PATCH] Update test wasm timeout (#43014) This test has been flakey due to the timeout occasionally being hit. x-ref: https://github.com/vercel/next.js/actions/runs/3483651647/jobs/5827421628 --- test/integration/production/test/index.test.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/integration/production/test/index.test.js b/test/integration/production/test/index.test.js index 8056768dec19..d232f7eb3aeb 100644 --- a/test/integration/production/test/index.test.js +++ b/test/integration/production/test/index.test.js @@ -36,6 +36,10 @@ let app const context = {} +if (process.env.TEST_WASM) { + jest.setTimeout(120 * 1000) +} + describe('Production Usage', () => { let output = '' beforeAll(async () => {