Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Aug 6, 2024
1 parent 7ee8f58 commit c7356fa
Show file tree
Hide file tree
Showing 3 changed files with 166 additions and 200 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@
"@types/jest": "^29.5.12",
"@types/long": "^4.0.0",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"buffer": "^6.0.3",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-unicorn": "^54.0.0",
"eslint-plugin-unicorn": "^55.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^3.3.3",
Expand Down
2 changes: 1 addition & 1 deletion test/tabixindexedfile.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ test('can fetch the entire header for a very large vcf header', async () => {

const h = await f.getHeader()
const lastBit = 'CN_105715_AGL\tCDC_QG-1_AGL\tCDC_SB-1_AGL\n'
expect(h.slice(h.length - lastBit.length, h.length)).toEqual(lastBit)
expect(h.slice(h.length - lastBit.length)).toEqual(lastBit)
expect(h.at(-1)).toEqual('\n')
expect(h.length).toEqual(5315655)
})
Expand Down
Loading

0 comments on commit c7356fa

Please sign in to comment.