mirror of
https://github.com/actions/checkout
synced 2024-11-09 23:22:40 +00:00
format input-helper
Signed-off-by: James Bradlee <james.bradlee@telenor.no>
This commit is contained in:
parent
3a6c8fb5e6
commit
491fae084d
1 changed files with 9 additions and 3 deletions
|
@ -153,7 +153,9 @@ describe('input-helper tests', () => {
|
|||
expect(settings.ref).toBeTruthy()
|
||||
expect(settings.ref).toStrictEqual('refs/pull/123/merge')
|
||||
expect(settings.commit).toBeTruthy()
|
||||
expect(settings.commit).toStrictEqual('0123456789012345678901234567890123456789')
|
||||
expect(settings.commit).toStrictEqual(
|
||||
'0123456789012345678901234567890123456789'
|
||||
)
|
||||
})
|
||||
|
||||
it('ref fallbacks to commit if ref is empty but commit is specified', async () => {
|
||||
|
@ -162,8 +164,12 @@ describe('input-helper tests', () => {
|
|||
const settings: IGitSourceSettings = await inputHelper.getInputs()
|
||||
expect(settings).toBeTruthy()
|
||||
expect(settings.ref).toBeTruthy()
|
||||
expect(settings.ref).toStrictEqual('0123456789012345678901234567890123456789')
|
||||
expect(settings.ref).toStrictEqual(
|
||||
'0123456789012345678901234567890123456789'
|
||||
)
|
||||
expect(settings.commit).toBeTruthy()
|
||||
expect(settings.commit).toStrictEqual('0123456789012345678901234567890123456789')
|
||||
expect(settings.commit).toStrictEqual(
|
||||
'0123456789012345678901234567890123456789'
|
||||
)
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue