mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
24f4f7f6e2
PR-URL: https://github.com/nodejs/node/pull/41307 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
19 lines
376 B
JavaScript
19 lines
376 B
JavaScript
// Flags: --no-warnings
|
|
'use strict';
|
|
|
|
// Test that DEP0121 is emitted on the first call of _setSimultaneousAccepts().
|
|
|
|
const {
|
|
expectWarning
|
|
} = require('../common');
|
|
const {
|
|
_setSimultaneousAccepts
|
|
} = require('net');
|
|
|
|
expectWarning(
|
|
'DeprecationWarning',
|
|
'net._setSimultaneousAccepts() is deprecated and will be removed.',
|
|
'DEP0121');
|
|
|
|
_setSimultaneousAccepts();
|