Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions test/parallel/test-fs-cp.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -275,8 +275,10 @@ function nextdir() {

// It throws an error if attempt is made to copy socket.
if (!isWindows) {
const src = nextdir();
mkdirSync(src);
const dest = nextdir();
const sock = `${process.pid}.sock`;
const sock = join(src, `${process.pid}.sock`);
const server = net.createServer();
server.listen(sock);
assert.throws(
Expand Down Expand Up @@ -596,8 +598,10 @@ if (!isWindows) {

// It returns an error if attempt is made to copy socket.
if (!isWindows) {
const src = nextdir();
mkdirSync(src);
const dest = nextdir();
const sock = `${process.pid}.sock`;
const sock = join(src, `${process.pid}.sock`);
const server = net.createServer();
server.listen(sock);
cp(sock, dest, mustCall((err) => {
Expand Down