summaryrefslogtreecommitdiff
path: root/test/parallel/test-net-server-simultaneous-accepts-produce-warning-once.js
blob: ffca38f603b2a955e4f108e816162f0c7f22ab07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
'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();