Update "makeLatest" so it's always defined
Some checks failed
Test / check_pr (push) Has been cancelled

This commit is contained in:
Nick Cipollo
2022-12-11 13:56:37 -05:00
parent 78ea7b5528
commit a2e71bdd4e
6 changed files with 33 additions and 51 deletions

View File

@@ -240,11 +240,6 @@ describe('Inputs', () => {
mockGetInput.mockReturnValueOnce('true')
expect(inputs.makeLatest).toBe('true')
})
it('returns undefined when omitted', () => {
mockGetInput.mockReturnValueOnce('')
expect(inputs.makeLatest).toBeUndefined()
})
})
describe('owner', () => {