mirror of
https://github.com/ncipollo/release-action
synced 2026-09-07 20:04:03 +00:00
9 lines
244 B
TypeScript
9 lines
244 B
TypeScript
import { vi } from "vitest"
|
|
|
|
export const createReadStream = vi.fn()
|
|
export const statSync = vi.fn()
|
|
export const readFileSync = vi.fn()
|
|
export const writeFileSync = vi.fn()
|
|
export const existsSync = vi.fn()
|
|
export const realpathSync = vi.fn()
|