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