Skip to content

Commit 6253f26

Browse files
committed
extend mocks
1 parent e9aaac3 commit 6253f26

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/src/__mocks__/core.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ export const error: jest.MockedFunction<typeof core.error> = jest.fn();
2121
export const warning: jest.MockedFunction<typeof core.warning> = jest.fn();
2222
export const getIDToken: jest.MockedFunction<typeof core.getIDToken> = jest.fn();
2323
export const notice: jest.MockedFunction<typeof core.notice> = jest.fn();
24+
export const summary: jest.MockedFunction<any> = jest.fn();
25+
export const markdownSummary: jest.MockedFunction<any> = jest.fn();
26+
export const toPosixPath: jest.MockedFunction<typeof core.toPosixPath> = jest.fn();
27+
export const toWin32Path: jest.MockedFunction<typeof core.toWin32Path> = jest.fn();
28+
export const toPlatformPath: jest.MockedFunction<typeof core.toPlatformPath> = jest.fn();
2429
export declare enum ExitCode {
2530
/**
2631
* A code indicating that the action was successful

0 commit comments

Comments
 (0)