From 45483e4c19f7d17fa106d3bd763b0df2dcd63e3a Mon Sep 17 00:00:00 2001 From: Alif Rachmawadi Date: Thu, 8 Oct 2020 01:32:27 +0000 Subject: [PATCH] increase test timeout --- __tests__/installer.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/__tests__/installer.test.ts b/__tests__/installer.test.ts index 8dd1d11..7fedfa1 100644 --- a/__tests__/installer.test.ts +++ b/__tests__/installer.test.ts @@ -17,7 +17,7 @@ describe('installer tests', () => { beforeAll(async () => { await io.rmRF(toolDir); await io.rmRF(tempDir); - }); + }, 100000); beforeEach(() => { const platform = release.getPlatform(); @@ -32,7 +32,7 @@ describe('installer tests', () => { await io.rmRF(toolDir); await io.rmRF(tempDir); - }); + }, 100000); it('Downloads flutter', async () => { await installer.getFlutter('1.0.0', 'stable');