deployphp/node_modules/event-stream/test/stringify.js

16 lines
237 B
JavaScript
Raw Normal View History

2023-01-10 15:49:41 +00:00
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)