mirror of
https://github.com/actions/checkout.git
synced 2025-05-01 14:20:02 +00:00
change: remove path.sep, add unit tests, dist
Remove path.sep during comparison with repositoryPath (did not take in account root folders) Updated and added more unit tests Updated dist/index.js
This commit is contained in:
parent
21ffcee746
commit
8461fff5eb
3 changed files with 23 additions and 3 deletions
|
@ -144,4 +144,25 @@ describe('input-helper tests', () => {
|
|||
const settings: IGitSourceSettings = await inputHelper.getInputs()
|
||||
expect(settings.workflowOrganizationId).toBe(123456)
|
||||
})
|
||||
|
||||
it('sets a different working directory', async() => {
|
||||
inputs['working-directory'] = '/home/user/test'
|
||||
inputs['path'] = 'path/to/repo'
|
||||
const settings: IGitSourceSettings = await inputHelper.getInputs()
|
||||
expect(settings.repositoryPath).toBe(path.resolve('/home/user/test/path/to/repo'))
|
||||
})
|
||||
|
||||
it('sets a working directory on root', async() => {
|
||||
inputs['working-directory'] = '/'
|
||||
inputs['path'] = 'path/to/repo'
|
||||
const settings: IGitSourceSettings = await inputHelper.getInputs()
|
||||
expect(settings.repositoryPath).toBe(path.resolve('/path/to/repo'))
|
||||
})
|
||||
|
||||
it('sets a working directory on root and repository path is set to empty', async() => {
|
||||
inputs['working-directory'] = '/'
|
||||
inputs['path'] = ''
|
||||
const settings: IGitSourceSettings = await inputHelper.getInputs()
|
||||
expect(settings.repositoryPath).toBe(path.resolve('/'))
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue