chore: add remaining tests

This commit is contained in:
Tom Keller
2022-10-18 17:58:04 -07:00
parent a61ce85bf3
commit 49bbbeb420
12 changed files with 798 additions and 209 deletions
+4 -4
View File
@@ -18,10 +18,10 @@ describe('Configure AWS Credentials', () => {
beforeEach(() => {
jest.resetModules();
jest.spyOn(core, 'exportVariable');
jest.spyOn(core, 'setSecret');
jest.spyOn(core, 'setOutput');
jest.spyOn(core, 'setFailed');
jest.spyOn(core, 'exportVariable').mockImplementation();
jest.spyOn(core, 'setSecret').mockImplementation();
jest.spyOn(core, 'setOutput').mockImplementation();
jest.spyOn(core, 'setFailed').mockImplementation();
process.env = { ...OLD_ENV, ...ACTION_ENVIRONMENT_VARIABLES };
});