fix cache restore tests

This commit is contained in:
Dmitry Shibanov 2021-11-10 18:46:39 +03:00
parent f3bb768479
commit 07c09af2d5

View file

@ -63,11 +63,9 @@ describe('restore-cache', () => {
it.each(['npm', 'pip2', 'pip21', 'pip21.3', 'pipenv32'])( it.each(['npm', 'pip2', 'pip21', 'pip21.3', 'pipenv32'])(
'Throw an error because %s is not supported', 'Throw an error because %s is not supported',
async packageManager => { async packageManager => {
await expect( expect(() =>
getCacheDistributor(packageManager, '3.8.12', undefined) getCacheDistributor(packageManager, '3.8.12', undefined)
).rejects.toThrowError( ).toThrowError(`Caching for '${packageManager}' is not supported`);
`Caching for '${packageManager}' is not supported`
);
} }
); );
}); });