diff --git a/__tests__/restore.test.ts b/__tests__/restore.test.ts index c6d99f2..6f29fd0 100644 --- a/__tests__/restore.test.ts +++ b/__tests__/restore.test.ts @@ -27,6 +27,13 @@ beforeAll(() => { return actualUtils.getInputAsArray(name, options); } ); + + jest.spyOn(actionUtils, "getInputAsBoolean").mockImplementation( + (name, options) => { + const actualUtils = jest.requireActual("../src/utils/actionUtils"); + return actualUtils.getInputAsBoolean(name, options); + } + ); }); beforeEach(() => {