From ce360f4105addd18ec78e6427457ee3c611acb24 Mon Sep 17 00:00:00 2001 From: eric sciple Date: Tue, 19 Oct 2021 09:44:47 -0500 Subject: [PATCH] fix linting for tests --- __test__/git-auth-helper.test.ts | 8 ++++---- __test__/ref-helper.test.ts | 6 +++--- __test__/retry-helper.test.ts | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/__test__/git-auth-helper.test.ts b/__test__/git-auth-helper.test.ts index 2b4830c..b39d352 100644 --- a/__test__/git-auth-helper.test.ts +++ b/__test__/git-auth-helper.test.ts @@ -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 } } diff --git a/__test__/ref-helper.test.ts b/__test__/ref-helper.test.ts index 9911eff..3bada0b 100644 --- a/__test__/ref-helper.test.ts +++ b/__test__/ref-helper.test.ts @@ -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" ) } diff --git a/__test__/retry-helper.test.ts b/__test__/retry-helper.test.ts index 6f8e027..b4cb999 100644 --- a/__test__/retry-helper.test.ts +++ b/__test__/retry-helper.test.ts @@ -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)