mirror of
https://github.com/actions/checkout.git
synced 2025-04-20 01:26:46 +00:00
Run format, lint and build
Signed-off-by: Luca Comellini <luca.com@gmail.com>
This commit is contained in:
parent
44c2b7a8a4
commit
b260373e81
9 changed files with 9720 additions and 29471 deletions
|
@ -169,9 +169,8 @@ 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',
|
||||
|
@ -182,7 +181,8 @@ describe('git-auth-helper tests', () => {
|
|||
}
|
||||
|
||||
return await realReadFile(file, options)
|
||||
})
|
||||
}
|
||||
)
|
||||
|
||||
// Act
|
||||
const authHelper = gitAuthHelper.createAuthHelper(git, settings)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue