We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58faf58 commit 31a74afCopy full SHA for 31a74af
tests/api.test.ts
@@ -38,12 +38,8 @@ const mockOctokit = {
38
};
39
40
describe("API", () => {
41
- let coreGetInputSpy: jest.SpyInstance<
42
- string,
43
- [name: string, options?: core.InputOptions]
44
- >;
45
beforeEach(() => {
46
- coreGetInputSpy = jest.spyOn(core, "getInput").mockReturnValue("");
+ jest.spyOn(core, "getInput").mockReturnValue("");
47
jest.spyOn(github, "getOctokit").mockReturnValue(mockOctokit as any);
48
init();
49
});
0 commit comments