fix(deps): update vulnerable dependencies (#27062)

This commit is contained in:
Tommaso Sciortino
2026-05-14 14:19:27 -07:00
committed by GitHub
parent 5159b081bd
commit a6ed2cc5e3
4 changed files with 165 additions and 78 deletions
@@ -205,7 +205,10 @@ describe('GitService', () => {
hoistedMockCheckIsRepo.mockResolvedValue(false);
const service = new GitService(projectRoot, storage);
await service.setupShadowGitRepository();
expect(hoistedMockSimpleGit).toHaveBeenCalledWith(repoDir);
expect(hoistedMockSimpleGit).toHaveBeenCalledWith(
repoDir,
expect.anything(),
);
expect(hoistedMockInit).toHaveBeenCalled();
});