deployphp/node_modules/event-stream/test/stringify.js
2023-01-10 16:49:41 +01:00

16 lines
237 B
JavaScript

var es = require('../')
exports['handle buffer'] = function (t) {
es.stringify().on('data', function (d) {
t.equal(d.trim(), JSON.stringify('HELLO'))
t.end()
}).write(new Buffer('HELLO'))
}
require('./helper')(module)