mirror of
https://github.com/actions/toolkit.git
synced 2026-08-07 00:00:18 +02:00
Fix styling
This commit is contained in:
@@ -293,10 +293,10 @@ describe('Download Tests', () => {
|
||||
}
|
||||
|
||||
function setupThrowWhenReadingStream(): void {
|
||||
const spyInstance = jest
|
||||
jest
|
||||
.spyOn(DownloadHttpClient.prototype, 'pipeResponseToFile')
|
||||
.mockImplementationOnce(async () => {
|
||||
return new Promise<void>(resolve => {
|
||||
return new Promise<void>(() => {
|
||||
throw new Error(
|
||||
'simulate GZip reading truncated buffer and throw Z_BUF_ERROR'
|
||||
)
|
||||
|
||||
@@ -219,7 +219,9 @@ export class DownloadHttpClient {
|
||||
return parseInt(expected) === received
|
||||
}
|
||||
|
||||
const resetDestinationStream = async (downloadPath: string) => {
|
||||
const resetDestinationStream = async (
|
||||
downloadPath: string
|
||||
): Promise<void> => {
|
||||
await rmFile(downloadPath)
|
||||
destinationStream = fs.createWriteStream(downloadPath)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user