mirror of
https://github.com/actions/hello-world-javascript-action.git
synced 2025-04-05 05:59:40 +00:00
Convert to ESM
This commit is contained in:
12
__fixtures__/core.js
Normal file
12
__fixtures__/core.js
Normal file
@ -0,0 +1,12 @@
|
||||
/**
|
||||
* 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()
|
5
__fixtures__/github.js
Normal file
5
__fixtures__/github.js
Normal file
@ -0,0 +1,5 @@
|
||||
export const context = {
|
||||
payload: {
|
||||
actor: 'mona'
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user