From 390521655e25279683d21a7b6614766c1f6fd78a Mon Sep 17 00:00:00 2001 From: Laura Bailey Date: Tue, 22 Feb 2022 16:55:33 +1100 Subject: [PATCH] Fix unimplemented methods --- __test__/git-auth-helper.test.ts | 2 ++ __test__/git-directory-helper.test.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/__test__/git-auth-helper.test.ts b/__test__/git-auth-helper.test.ts index b39d352..10f6636 100644 --- a/__test__/git-auth-helper.test.ts +++ b/__test__/git-auth-helper.test.ts @@ -733,6 +733,8 @@ async function setup(testName: string): Promise { }), submoduleSync: jest.fn(), submoduleUpdate: jest.fn(), + submoduleReset: jest.fn(), + submoduleClean: jest.fn(), tagExists: jest.fn(), tryClean: jest.fn(), tryConfigUnset: jest.fn( diff --git a/__test__/git-directory-helper.test.ts b/__test__/git-directory-helper.test.ts index 70849b5..e6d3cd0 100644 --- a/__test__/git-directory-helper.test.ts +++ b/__test__/git-directory-helper.test.ts @@ -423,6 +423,8 @@ async function setup(testName: string): Promise { submoduleForeach: jest.fn(), submoduleSync: jest.fn(), submoduleUpdate: jest.fn(), + submoduleReset: jest.fn(), + submoduleClean: jest.fn(), tagExists: jest.fn(), tryClean: jest.fn(async () => { return true