mirror of
https://github.com/actions/checkout.git
synced 2025-03-31 05:20:06 +02:00
.
This commit is contained in:
parent
57c5af9905
commit
77544dd556
1 changed files with 14 additions and 0 deletions
|
@ -75,6 +75,20 @@ describe('input-helper tests', () => {
|
||||||
expect(settings.repositoryPath).toBe(gitHubWorkspace)
|
expect(settings.repositoryPath).toBe(gitHubWorkspace)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('qualifies ref', () => {
|
||||||
|
let originalContext = mockGitHub.context
|
||||||
|
try {
|
||||||
|
mockGitHub.context = {...originalContext} // Shallow clone
|
||||||
|
mockGitHub.context.ref = 'some-unqualified-ref'
|
||||||
|
const settings: ISourceSettings = inputHelper.getInputs()
|
||||||
|
expect(settings).toBeTruthy()
|
||||||
|
expect(settings.commit).toBe('1234567890123456789012345678901234567890')
|
||||||
|
expect(settings.ref).toBe('refs/heads/some-unqualified-ref')
|
||||||
|
} finally {
|
||||||
|
mockGitHub.context = originalContext
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
it('requires qualified repo', () => {
|
it('requires qualified repo', () => {
|
||||||
inputs.repository = 'some-unqualified-repo'
|
inputs.repository = 'some-unqualified-repo'
|
||||||
assert.throws(() => {
|
assert.throws(() => {
|
||||||
|
|
Loading…
Add table
Reference in a new issue