Skip to content

Commit

Permalink
test(csv-parse): skip invalid spectrum location_coordinates
Browse files Browse the repository at this point in the history
  • Loading branch information
wdavidw committed Aug 26, 2024
1 parent 8157783 commit 271462c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/csv-parse/test/spectrum.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ describe 'spectrum', ->
spectrum (err, tests) ->
each tests, (test) ->
return if test.name is 'simple' # See https://github.com/maxogden/csv-spectrum/commit/ec45e96a79661d7bd87f6becbb845b30f11accde
records = parse test.csv.toString(), columns: true
return if test.name is 'location_coordinates'# See https://github.com/max-mapper/csv-spectrum/issues/20
records = parse test.csv.toString(), columns: true, relax_quotes: true
records.should.eql JSON.parse test.json.toString()
.then (-> next()), next

0 comments on commit 271462c

Please sign in to comment.