mirror of
				https://github.com/actions/checkout.git
				synced 2025-10-31 18:18:37 +08:00 
			
		
		
		
	fix linting for tests
This commit is contained in:
		
							parent
							
								
									7b32c07aeb
								
							
						
					
					
						commit
						ce360f4105
					
				|  | @ -417,7 +417,7 @@ describe('git-auth-helper tests', () => { | |||
|           `Did not expect file to exist: '${globalGitConfigPath}'` | ||||
|         ) | ||||
|       } catch (err) { | ||||
|         if (err.code !== 'ENOENT') { | ||||
|         if ((err as any)?.code !== 'ENOENT') { | ||||
|           throw err | ||||
|         } | ||||
|       } | ||||
|  | @ -601,7 +601,7 @@ describe('git-auth-helper tests', () => { | |||
|       await fs.promises.stat(actualKeyPath) | ||||
|       throw new Error('SSH key should have been deleted') | ||||
|     } catch (err) { | ||||
|       if (err.code !== 'ENOENT') { | ||||
|       if ((err as any)?.code !== 'ENOENT') { | ||||
|         throw err | ||||
|       } | ||||
|     } | ||||
|  | @ -611,7 +611,7 @@ describe('git-auth-helper tests', () => { | |||
|       await fs.promises.stat(actualKnownHostsPath) | ||||
|       throw new Error('SSH known hosts should have been deleted') | ||||
|     } catch (err) { | ||||
|       if (err.code !== 'ENOENT') { | ||||
|       if ((err as any)?.code !== 'ENOENT') { | ||||
|         throw err | ||||
|       } | ||||
|     } | ||||
|  | @ -658,7 +658,7 @@ describe('git-auth-helper tests', () => { | |||
|       await fs.promises.stat(homeOverride) | ||||
|       throw new Error(`Should have been deleted '${homeOverride}'`) | ||||
|     } catch (err) { | ||||
|       if (err.code !== 'ENOENT') { | ||||
|       if ((err as any)?.code !== 'ENOENT') { | ||||
|         throw err | ||||
|       } | ||||
|     } | ||||
|  |  | |||
|  | @ -16,7 +16,7 @@ describe('ref-helper tests', () => { | |||
|       await refHelper.getCheckoutInfo(git, 'refs/heads/my/branch', commit) | ||||
|       throw new Error('Should not reach here') | ||||
|     } catch (err) { | ||||
|       expect(err.message).toBe('Arg git cannot be empty') | ||||
|       expect((err as any)?.message).toBe('Arg git cannot be empty') | ||||
|     } | ||||
|   }) | ||||
| 
 | ||||
|  | @ -25,7 +25,7 @@ describe('ref-helper tests', () => { | |||
|       await refHelper.getCheckoutInfo(git, '', '') | ||||
|       throw new Error('Should not reach here') | ||||
|     } catch (err) { | ||||
|       expect(err.message).toBe('Args ref and commit cannot both be empty') | ||||
|       expect((err as any)?.message).toBe('Args ref and commit cannot both be empty') | ||||
|     } | ||||
|   }) | ||||
| 
 | ||||
|  | @ -102,7 +102,7 @@ describe('ref-helper tests', () => { | |||
|       await refHelper.getCheckoutInfo(git, 'my-ref', '') | ||||
|       throw new Error('Should not reach here') | ||||
|     } catch (err) { | ||||
|       expect(err.message).toBe( | ||||
|       expect((err as any)?.message).toBe( | ||||
|         "A branch or tag with the name 'my-ref' could not be found" | ||||
|       ) | ||||
|     } | ||||
|  |  | |||
|  | @ -74,7 +74,7 @@ describe('retry-helper tests', () => { | |||
|         throw new Error(`some error ${++attempts}`) | ||||
|       }) | ||||
|     } catch (err) { | ||||
|       error = err | ||||
|       error = err as Error | ||||
|     } | ||||
|     expect(error.message).toBe('some error 3') | ||||
|     expect(attempts).toBe(3) | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 eric sciple
						eric sciple