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>
36 lines
676 B
JavaScript
36 lines
676 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const tmpdir = require('../common/tmpdir');
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
|
|
tmpdir.refresh();
|
|
|
|
{
|
|
assert.throws(
|
|
() =>
|
|
fs.rmdirSync(tmpdir.resolve('noexist.txt'), { recursive: true }),
|
|
{
|
|
code: 'ENOENT',
|
|
}
|
|
);
|
|
}
|
|
{
|
|
fs.rmdir(
|
|
tmpdir.resolve('noexist.txt'),
|
|
{ recursive: true },
|
|
common.mustCall((err) => {
|
|
assert.strictEqual(err.code, 'ENOENT');
|
|
})
|
|
);
|
|
}
|
|
{
|
|
assert.rejects(
|
|
() => fs.promises.rmdir(tmpdir.resolve('noexist.txt'),
|
|
{ recursive: true }),
|
|
{
|
|
code: 'ENOENT',
|
|
}
|
|
).then(common.mustCall());
|
|
}
|