Skip to content

Commit ec40b5f

Browse files
committed
fix: tmp, debug test
1 parent 2b87b67 commit ec40b5f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/uncompress-test.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,13 @@ it('uncompress small Buffer', function (done) {
7979
child.stdin.end()
8080
})
8181

82-
it('uncompress large string', function (done) {
83-
var child = spawn('python3', [ '-m', 'snappy', '-c' ])
82+
it.only('uncompress large string', function (done) {
83+
var child = spawn('python', [ '-m', 'snappy', '-c' ])
8484
, uncompressStream = createUncompressStream({ asBuffer: false })
8585
, data = ''
8686

8787
uncompressStream.on('data', function (chunk) {
88+
console.log('@@@ on data, chunk is', chunk, 'type of chunk is', typeof(chunk))
8889
data = data + chunk
8990
expect(typeof(chunk)).to.be.equal('string')
9091
})

0 commit comments

Comments
 (0)