Formatting and stylistic cleanup

This commit is contained in:
Bassem Dghaidi
2024-11-14 03:22:03 -08:00
committed by GitHub
parent 69409b3acd
commit b2557ac90c
11 changed files with 321 additions and 297 deletions

View File

@@ -1,8 +1,8 @@
import { downloadCache } from '../src/internal/cacheHttpClient'
import { getCacheVersion } from '../src/internal/cacheUtils'
import { CompressionMethod } from '../src/internal/constants'
import {downloadCache} from '../src/internal/cacheHttpClient'
import {getCacheVersion} from '../src/internal/cacheUtils'
import {CompressionMethod} from '../src/internal/constants'
import * as downloadUtils from '../src/internal/downloadUtils'
import { DownloadOptions, getDownloadOptions } from '../src/options'
import {DownloadOptions, getDownloadOptions} from '../src/options'
jest.mock('../src/internal/downloadUtils')
@@ -129,7 +129,7 @@ test('downloadCache passes options to download methods', async () => {
const archiveLocation = 'http://foo.blob.core.windows.net/bar/baz'
const archivePath = '/foo/bar'
const options: DownloadOptions = { downloadConcurrency: 4 }
const options: DownloadOptions = {downloadConcurrency: 4}
await downloadCache(archiveLocation, archivePath, options)