From 29ffa090639dde02beb69fbf39d551c9d018e4fc Mon Sep 17 00:00:00 2001 From: Nitin Kumar Date: Sat, 3 Oct 2020 16:14:34 +0530 Subject: [PATCH] chore: increase timeout --- test/analyze/analyze-flag.test.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/analyze/analyze-flag.test.js b/test/analyze/analyze-flag.test.js index ff47f2baef5..fbea3ab89ad 100644 --- a/test/analyze/analyze-flag.test.js +++ b/test/analyze/analyze-flag.test.js @@ -2,7 +2,6 @@ const { runWatch } = require('../utils/test-utils'); -jest.setTimeout(300000); describe('--analyze flag', () => { it('should load webpack-bundle-analyzer plugin with --analyze flag', async () => { const { stderr, stdout } = await runWatch({ @@ -15,5 +14,5 @@ describe('--analyze flag', () => { expect(stderr).toBeFalsy(); expect(stdout).toContain('BundleAnalyzerPlugin'); expect(stdout).toContain('Webpack Bundle Analyzer is started at http://127.0.0.1:8888'); - }); + }, 600000); });