From a5ba64f65ee2b5b4a09d1e4e52c081f2040f0c5f Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Fri, 21 Aug 2020 16:33:18 +0200 Subject: [PATCH] Fix tests --- __tests__/aws.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/__tests__/aws.test.ts b/__tests__/aws.test.ts index 5209176..a1b53f1 100644 --- a/__tests__/aws.test.ts +++ b/__tests__/aws.test.ts @@ -24,7 +24,7 @@ describe('execCLI', () => { const cliCmdOutput = await aws.execCLI(['--version']); console.log(`cliCmdOutput: ${cliCmdOutput}`); expect(cliCmdOutput).not.toEqual(''); - }); + }, 100000); }); describe('getCLIVersion', () => { @@ -32,7 +32,7 @@ describe('getCLIVersion', () => { const cliVersion = await aws.getCLIVersion(); console.log(`cliVersion: ${cliVersion}`); expect(semver.valid(cliVersion)).not.toBeNull(); - }); + }, 100000); }); describe('parseCLIVersion', () => {