mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
15 lines
409 B
JavaScript
15 lines
409 B
JavaScript
|
'use strict';
|
||
|
const common = require('../common');
|
||
|
const fs = require('fs');
|
||
|
const net = require('net');
|
||
|
|
||
|
const tmpdir = require('../common/tmpdir');
|
||
|
tmpdir.refresh();
|
||
|
|
||
|
const server = net.createServer().listen(common.PIPE, common.mustCall(() => {
|
||
|
// The process should not crash
|
||
|
// See https://github.com/nodejs/node/issues/52159
|
||
|
fs.readdirSync(tmpdir.path, { recursive: true });
|
||
|
server.close();
|
||
|
}));
|