mirror of
https://github.com/actions/hello-world-javascript-action.git
synced 2025-04-04 13:49:36 +00:00
19 lines
337 B
JavaScript
19 lines
337 B
JavaScript
/**
|
|
* Unit tests for the action's entrypoint, src/index.js
|
|
*/
|
|
|
|
const { run } = require('../src/main')
|
|
|
|
// Mock the action's entrypoint
|
|
jest.mock('../src/main', () => ({
|
|
run: jest.fn()
|
|
}))
|
|
|
|
describe('index', () => {
|
|
it('calls run when imported', async () => {
|
|
require('../src/index')
|
|
|
|
expect(run).toHaveBeenCalled()
|
|
})
|
|
})
|