From bd912f9899e75f00fcf4fffdd0068a34ce923113 Mon Sep 17 00:00:00 2001 From: eric sciple Date: Tue, 26 May 2020 10:21:43 -0400 Subject: [PATCH] fixed auth helper test --- __test__/git-auth-helper.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/__test__/git-auth-helper.test.ts b/__test__/git-auth-helper.test.ts index 609079ea2..92a462a2e 100644 --- a/__test__/git-auth-helper.test.ts +++ b/__test__/git-auth-helper.test.ts @@ -722,6 +722,7 @@ async function setup(testName: string): Promise { log1: jest.fn(), remoteAdd: jest.fn(), removeEnvironmentVariable: jest.fn((name: string) => delete git.env[name]), + revParse: jest.fn(), setEnvironmentVariable: jest.fn((name: string, value: string) => { git.env[name] = value }),