mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
3235d318dc
Add a test case that verifies that calling _setSimultaneousAccepts() function twice does not trigger the deprecation warning twice. PR-URL: https://github.com/nodejs/node/pull/24180 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
13 lines
278 B
JavaScript
13 lines
278 B
JavaScript
'use strict';
|
|
|
|
const { expectWarning } = require('../common');
|
|
const net = require('net');
|
|
|
|
expectWarning(
|
|
'DeprecationWarning',
|
|
'net._setSimultaneousAccepts() is deprecated and will be removed.',
|
|
'DEP0121');
|
|
|
|
net._setSimultaneousAccepts();
|
|
net._setSimultaneousAccepts();
|