summaryrefslogtreecommitdiff
path: root/test/parallel/test-dgram-unref.js
blob: ee463d7ab8da77dfaf57ceff02a7bb90865fbca8 (plain)
1
2
3
4
5
6
7
8
9
'use strict';
const common = require('../common');
const dgram = require('dgram');

const s = dgram.createSocket('udp4');
s.bind();
s.unref();

setTimeout(common.fail, 1000).unref();