From e203fd1dfda87a5b656550356d9b1916d2c0f3b1 Mon Sep 17 00:00:00 2001 From: maxjeffos <44034094+maxjeffos@users.noreply.github.com> Date: Fri, 26 Feb 2021 09:26:42 -0500 Subject: [PATCH] test: set timeout in beforeAll --- test/dev-count-analysis.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/dev-count-analysis.spec.ts b/test/dev-count-analysis.spec.ts index f7fc5b2800..a356e100aa 100644 --- a/test/dev-count-analysis.spec.ts +++ b/test/dev-count-analysis.spec.ts @@ -7,7 +7,7 @@ import { hashData, } from '../src/lib/monitor/dev-count-analysis'; -const testTimeout = 30000; +const testTimeout = 60000; describe('cli dev count via git log analysis', () => { let expectedContributorUserIds: string[] = []; let expectedMergeOnlyUserIds: string[] = []; @@ -52,7 +52,7 @@ describe('cli dev count via git log analysis', () => { expectedMergeOnlyUserIds = uniqueEmailsContainingOnlyMergeCommits.map( hashData, ); - }); + }, testTimeout); it( 'returns contributors',