Skip to content

Commit

Permalink
Fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
louptheron committed Feb 12, 2024
1 parent 157c1eb commit 8eb8977
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ describe('utils', () => {
const csvMap = getJDPCsvMap(JDP_CSV_MAP_BASE, JDP.WESTERN_WATERS, ['ANZ', 'HKE'])

// Then
expect(Object.keys(csvMap)).toHaveLength(79)
expect(Object.keys(csvMap)).toHaveLength(91)

// @ts-ignore
expect(csvMap.species1?.label).toEqual('SPECIES1')
Expand Down Expand Up @@ -70,7 +70,7 @@ describe('utils', () => {
const csvMap = getJDPCsvMap(JDP_CSV_MAP_BASE, JDP.MEDITERRANEAN_AND_EASTERN_ATLANTIC, [])

// Then
expect(Object.keys(csvMap)).toHaveLength(79)
expect(Object.keys(csvMap)).toHaveLength(91)

// @ts-ignore
expect(csvMap.eventHour?.label).toEqual('EVENT_HOUR')
Expand Down

0 comments on commit 8eb8977

Please sign in to comment.