mirror of https://github.com/actions/toolkit
Restore __tests__
parent
9da70ffbd7
commit
4e1912a3c3
|
@ -1,8 +1,7 @@
|
||||||
import { getCacheVersion } from '../src/internal/cacheUtils'
|
import {downloadCache, getCacheVersion} from '../src/internal/cacheHttpClient'
|
||||||
import { downloadCache } from '../src/internal/cacheHttpClient'
|
import {CompressionMethod} from '../src/internal/constants'
|
||||||
import { CompressionMethod } from '../src/internal/constants'
|
|
||||||
import * as downloadUtils from '../src/internal/downloadUtils'
|
import * as downloadUtils from '../src/internal/downloadUtils'
|
||||||
import { DownloadOptions, getDownloadOptions } from '../src/options'
|
import {DownloadOptions, getDownloadOptions} from '../src/options'
|
||||||
|
|
||||||
jest.mock('../src/internal/downloadUtils')
|
jest.mock('../src/internal/downloadUtils')
|
||||||
|
|
||||||
|
@ -129,7 +128,7 @@ test('downloadCache passes options to download methods', async () => {
|
||||||
|
|
||||||
const archiveLocation = 'http://foo.blob.core.windows.net/bar/baz'
|
const archiveLocation = 'http://foo.blob.core.windows.net/bar/baz'
|
||||||
const archivePath = '/foo/bar'
|
const archivePath = '/foo/bar'
|
||||||
const options: DownloadOptions = { downloadConcurrency: 4 }
|
const options: DownloadOptions = {downloadConcurrency: 4}
|
||||||
|
|
||||||
await downloadCache(archiveLocation, archivePath, options)
|
await downloadCache(archiveLocation, archivePath, options)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue