2023-02-20 10:35:04 -05:00
|
|
|
// deno-fmt-ignore-file
|
|
|
|
// deno-lint-ignore-file
|
|
|
|
|
|
|
|
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
|
|
|
|
// Taken from Node 18.12.1
|
2024-04-02 18:24:55 -04:00
|
|
|
// This file is automatically generated by `tests/node_compat/runner/setup.ts`. Do not modify this file manually.
|
2023-02-20 10:35:04 -05:00
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
// Test that 'close' emits once and not twice when `emitClose: true` is set.
|
|
|
|
// Refs: https://github.com/nodejs/node/issues/31366
|
|
|
|
|
|
|
|
const common = require('../common');
|
|
|
|
const fs = require('fs');
|
|
|
|
|
|
|
|
const tmpdir = require('../common/tmpdir');
|
|
|
|
tmpdir.refresh();
|
|
|
|
|
2024-06-11 07:41:44 -04:00
|
|
|
const filepath = tmpdir.resolve('write_pos.txt');
|
2023-02-20 10:35:04 -05:00
|
|
|
|
|
|
|
const fileReadStream = fs.createReadStream(process.execPath);
|
|
|
|
const fileWriteStream = fs.createWriteStream(filepath, {
|
|
|
|
emitClose: true
|
|
|
|
});
|
|
|
|
|
|
|
|
fileReadStream.pipe(fileWriteStream);
|
|
|
|
fileWriteStream.on('close', common.mustCall());
|