1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-go synced 2025-07-06 08:16:00 +02:00

Implementation of caching functionality for setup-go action (#228)

This commit is contained in:
IvanZosimov 2022-05-25 12:07:29 +02:00 committed by GitHub
parent fcdc43634a
commit b22fbbc292
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
72 changed files with 126791 additions and 8387 deletions

View file

@ -89,7 +89,7 @@ describe('setup-go', () => {
});
logSpy.mockImplementation(line => {
// uncomment to debug
process.stderr.write('log:' + line + '\n');
//process.stderr.write('log:' + line + '\n');
});
dbgSpy.mockImplementation(msg => {
// uncomment to see debug output
@ -98,7 +98,7 @@ describe('setup-go', () => {
});
afterEach(() => {
jest.resetAllMocks();
//jest.resetAllMocks();
jest.clearAllMocks();
//jest.restoreAllMocks();
});