Unmock fs.existsSync after tests

main
Jacob Gillespie 4 years ago
parent e93556ca66
commit f452812b44
No known key found for this signature in database
GPG Key ID: 52D71192EF3DBDD9

@ -72,6 +72,10 @@ describe('run', () => {
getCommandOutputSpy = jest.spyOn(utils, 'getCommandOutput');
});
afterEach(() => {
existsSpy.mockRestore();
});
describe('Package manager validation', () => {
it('Package manager is not provided, skip caching', async () => {
inputs['cache'] = '';

Loading…
Cancel
Save