Skip to content

Commit

Permalink
test: set timeout in beforeAll
Browse files Browse the repository at this point in the history
  • Loading branch information
maxjeffos committed Feb 26, 2021
1 parent 8cd9fbf commit e203fd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/dev-count-analysis.spec.ts
Expand Up @@ -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[] = [];
Expand Down Expand Up @@ -52,7 +52,7 @@ describe('cli dev count via git log analysis', () => {
expectedMergeOnlyUserIds = uniqueEmailsContainingOnlyMergeCommits.map(
hashData,
);
});
}, testTimeout);

it(
'returns contributors',
Expand Down

0 comments on commit e203fd1

Please sign in to comment.