summaryrefslogtreecommitdiff
path: root/test/parallel/test-stream-wrap-encoding.js
blob: d23faaab4a65f391ef5e05f854a55849cd06094b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
'use strict';
const common = require('../common');
const assert = require('assert');

const StreamWrap = require('_stream_wrap');
const Duplex = require('stream').Duplex;

const stream = new Duplex({
  read: function() {
  },
  write: function() {
  }
});

stream.setEncoding('ascii');

const wrap = new StreamWrap(stream);

wrap.on('error', common.mustCall(function(err) {
  assert(/StringDecoder/.test(err.message));
}));

stream.push('ohai');