mirror of
https://github.com/graalvm/setup-graalvm.git
synced 2025-12-06 07:48:06 +08:00
8 lines
312 B
TypeScript
8 lines
312 B
TypeScript
import * as cache from '@actions/cache'
|
|
import { jest } from '@jest/globals'
|
|
|
|
export const ReserveCacheError = cache.ReserveCacheError
|
|
export const restoreCache = jest.fn<typeof cache.restoreCache>()
|
|
export const saveCache = jest.fn<typeof cache.saveCache>()
|
|
export const ValidationError = cache.ValidationError
|