0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/parallel/test-net-server-simultaneous-accepts-produce-warning-once.js
Andrey Melikhov 3235d318dc test: add test for _setSimultaneousAccepts()
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>
2018-11-13 18:02:28 +05:30

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();