From ef97ceb1f32554d6c0a53efb6830455638f18b02 Mon Sep 17 00:00:00 2001 From: "C. Lewis" Date: Sun, 1 Aug 2021 22:24:19 -0500 Subject: [PATCH] patch: give jest more time to prevent CI errors --- test/isolated/config.unit.test.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/isolated/config.unit.test.js b/test/isolated/config.unit.test.js index 61d46f4b968fb4..8df33bcf7dfbdf 100644 --- a/test/isolated/config.unit.test.js +++ b/test/isolated/config.unit.test.js @@ -7,6 +7,8 @@ import { PHASE_DEVELOPMENT_SERVER } from 'next/constants' const pathToConfig = join(__dirname, '_resolvedata', 'without-function') const pathToConfigFn = join(__dirname, '_resolvedata', 'with-function') +jest.setTimeout(10000) + describe('config', () => { it('Should get the configuration', async () => { const config = await loadConfig(PHASE_DEVELOPMENT_SERVER, pathToConfig)