mirror of
https://github.com/actions/setup-node.git
synced 2024-11-10 05:31:07 +07:00
Unmock fs.existsSync after tests
This commit is contained in:
parent
e93556ca66
commit
f452812b44
@ -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…
Reference in New Issue
Block a user