summaryrefslogtreecommitdiff
path: root/test/parallel/test-warn-stream-wrap.js
blob: 837a6e880ba6d678b51d9b43d1319549b0749081 (plain)
1
2
3
4
5
6
7
8
9
10
'use strict';

const common = require('../common');

// _stream_wrap is deprecated.

common.expectWarning('DeprecationWarning',
                     'The _stream_wrap module is deprecated.', 'DEP0125');

require('_stream_wrap');