Skip to content

Commit 603bd1c

Browse files
committed
test(csv-parse): skip invalid spectrum location_coordinates
1 parent 8157783 commit 603bd1c

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

packages/csv-parse/test/spectrum.coffee

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ describe 'spectrum', ->
99
spectrum (err, tests) ->
1010
each tests, (test) ->
1111
return if test.name is 'simple' # See https://github.com/maxogden/csv-spectrum/commit/ec45e96a79661d7bd87f6becbb845b30f11accde
12-
records = parse test.csv.toString(), columns: true
12+
return if test.name is 'location_coordinates'# See https://github.com/max-mapper/csv-spectrum/issues/20
13+
records = parse test.csv.toString(), columns: true, relax_quotes: true
1314
records.should.eql JSON.parse test.json.toString()
1415
.then (-> next()), next

packages/stream-transform/test/handler.mode.callback.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ describe 'handler.mode.callback', ->
2323
)
2424
chunks.join('').split('\n').length.should.eql 1000
2525

26-
it.only 'handler with callback with parallel 2', ->
26+
it 'handler with callback with parallel 2', ->
2727
count = 0
2828
clear = setInterval ->
2929
count++

0 commit comments

Comments
 (0)