commiter_date: fix github api request fallback

Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2024-11-19 16:57:38 +01:00
parent 359e915ab3
commit 861d98a3bd
2 changed files with 29 additions and 8 deletions

View File

@ -205,5 +205,19 @@ export const context = {
};
export const getOctokit = jest.fn(() => ({
request: () => Promise.resolve({data: {committer: {date: '2024-11-13T13:42:28Z'}}})
rest: {
repos: {
getCommit: jest.fn(() =>
Promise.resolve({
data: {
commit: {
committer: {
date: '2024-11-13T13:42:28Z'
}
}
}
})
)
}
}
}));