Update NPM dependencies (#1703)

* Update dependencies manually
* Format files
* Update licenses
This commit is contained in:
Cory Miller
2024-04-24 12:04:10 -04:00
committed by GitHub
parent 0ad4b8fada
commit 9c1e94e0ad
50 changed files with 33279 additions and 23501 deletions

View File

@ -169,8 +169,9 @@ describe('git-auth-helper tests', () => {
// Mock fs.promises.readFile
const realReadFile = fs.promises.readFile
jest.spyOn(fs.promises, 'readFile').mockImplementation(
async (file: any, options: any): Promise<Buffer> => {
jest
.spyOn(fs.promises, 'readFile')
.mockImplementation(async (file: any, options: any): Promise<Buffer> => {
const userKnownHostsPath = path.join(
os.homedir(),
'.ssh',
@ -181,8 +182,7 @@ describe('git-auth-helper tests', () => {
}
return await realReadFile(file, options)
}
)
})
// Act
const authHelper = gitAuthHelper.createAuthHelper(git, settings)