mirror of
				https://github.com/actions/checkout.git
				synced 2025-10-31 18:18:37 +08:00 
			
		
		
		
	.
This commit is contained in:
		
							parent
							
								
									57c5af9905
								
							
						
					
					
						commit
						77544dd556
					
				|  | @ -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…
	
		Reference in New Issue
	
	Block a user
	 eric sciple
						eric sciple