mirror of
https://github.com/actions/hello-world-javascript-action.git
synced 2025-04-04 13:49:36 +00:00
13 lines
341 B
JavaScript
13 lines
341 B
JavaScript
/**
|
|
* This file is used to mock the `@actions/core` module in tests.
|
|
*/
|
|
import { jest } from '@jest/globals'
|
|
|
|
export const debug = jest.fn()
|
|
export const error = jest.fn()
|
|
export const info = jest.fn()
|
|
export const getInput = jest.fn()
|
|
export const setOutput = jest.fn()
|
|
export const setFailed = jest.fn()
|
|
export const warning = jest.fn()
|