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>
23 lines
618 B
JavaScript
23 lines
618 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const tmpdir = require('../common/tmpdir');
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
|
|
tmpdir.refresh();
|
|
|
|
{
|
|
common.expectWarning(
|
|
'DeprecationWarning',
|
|
'In future versions of Node.js, fs.rmdir(path, { recursive: true }) ' +
|
|
'will be removed. Use fs.rm(path, { recursive: true }) instead',
|
|
'DEP0147'
|
|
);
|
|
const filePath = tmpdir.resolve('rmdir-recursive.txt');
|
|
fs.writeFileSync(filePath, '');
|
|
assert.throws(
|
|
() => fs.rmdirSync(filePath, { recursive: true }),
|
|
{ code: common.isWindows ? 'ENOENT' : 'ENOTDIR' }
|
|
);
|
|
}
|