Fix tests

This commit is contained in:
Aiqiao Yan
2020-05-06 20:07:39 -04:00
committed by Aiqiao Yan
parent 7409ad5fae
commit 15fefd9336
6 changed files with 11 additions and 14 deletions

View File

@@ -57,8 +57,7 @@ test('restore with no cache found', async () => {
const key = 'node-test'
const infoMock = jest.spyOn(core, 'info')
const clientMock = jest.spyOn(cacheHttpClient, 'getCacheEntry')
clientMock.mockImplementation(async () => {
jest.spyOn(cacheHttpClient, 'getCacheEntry').mockImplementation(async () => {
return Promise.resolve(null)
})
@@ -74,8 +73,7 @@ test('restore with server error should fail', async () => {
const paths = ['node_modules']
const key = 'node-test'
const clientMock = jest.spyOn(cacheHttpClient, 'getCacheEntry')
clientMock.mockImplementation(() => {
jest.spyOn(cacheHttpClient, 'getCacheEntry').mockImplementation(() => {
throw new Error('HTTP Error Occurred')
})
@@ -91,8 +89,7 @@ test('restore with restore keys and no cache found', async () => {
const infoMock = jest.spyOn(core, 'info')
const clientMock = jest.spyOn(cacheHttpClient, 'getCacheEntry')
clientMock.mockImplementation(async () => {
jest.spyOn(cacheHttpClient, 'getCacheEntry').mockImplementation(async () => {
return Promise.resolve(null)
})