mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
6a68794577
PR-URL: https://github.com/nodejs/node/pull/49126 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
16 lines
367 B
JavaScript
16 lines
367 B
JavaScript
'use strict';
|
|
require('../common');
|
|
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
|
|
const tmpdir = require('../common/tmpdir');
|
|
tmpdir.refresh();
|
|
|
|
// O_WRONLY without O_CREAT shall fail with ENOENT
|
|
const pathNE = tmpdir.resolve('file-should-not-exist');
|
|
assert.throws(
|
|
() => fs.openSync(pathNE, fs.constants.O_WRONLY),
|
|
(e) => e.code === 'ENOENT'
|
|
);
|