mirror of
https://code.forgejo.org/actions/checkout.git
synced 2025-05-11 03:59:54 +02:00
Merge 8461fff5eb
into 2d7d9f7ff5
This commit is contained in:
commit
5e96875070
6 changed files with 51 additions and 23 deletions
|
@ -824,7 +824,7 @@ async function setup(testName: string): Promise<void> {
|
|||
sshUser: '',
|
||||
workflowOrganizationId: 123456,
|
||||
setSafeDirectory: true,
|
||||
githubServerUrl: githubServerUrl
|
||||
githubServerUrl: githubServerUrl,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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