1
0
Fork 0

Add a new debug message for downloads

pull/1876/head
Bassem Dghaidi 2024-11-25 12:08:07 -08:00 committed by GitHub
parent 4d31e1048a
commit 35ede8fcf0
1 changed files with 15 additions and 3 deletions

View File

@ -174,7 +174,11 @@ test('restore with gzip compressed cache found', async () => {
'downloadCacheFile' 'downloadCacheFile'
) )
downloadCacheFileMock.mockReturnValue( downloadCacheFileMock.mockReturnValue(
Promise.resolve({} as BlobDownloadResponseParsed) Promise.resolve({
_response: {
status: 200
}
} as BlobDownloadResponseParsed)
) )
const fileSize = 142 const fileSize = 142
@ -254,7 +258,11 @@ test('restore with zstd compressed cache found', async () => {
'downloadCacheFile' 'downloadCacheFile'
) )
downloadCacheFileMock.mockReturnValue( downloadCacheFileMock.mockReturnValue(
Promise.resolve({} as BlobDownloadResponseParsed) Promise.resolve({
_response: {
status: 200
}
} as BlobDownloadResponseParsed)
) )
const fileSize = 62915000 const fileSize = 62915000
@ -335,7 +343,11 @@ test('restore with cache found for restore key', async () => {
'downloadCacheFile' 'downloadCacheFile'
) )
downloadCacheFileMock.mockReturnValue( downloadCacheFileMock.mockReturnValue(
Promise.resolve({} as BlobDownloadResponseParsed) Promise.resolve({
_response: {
status: 200
}
} as BlobDownloadResponseParsed)
) )
const fileSize = 142 const fileSize = 142