mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 03:31:35 +00:00

PR-URL: https://github.com/nodejs/node/pull/35683 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ben Coe <bencoe@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
24 lines
607 B
JavaScript
24 lines
607 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const tmpdir = require('../common/tmpdir');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
tmpdir.refresh();
|
|
|
|
{
|
|
// Should warn when trying to delete a nonexistent path
|
|
common.expectWarning(
|
|
'DeprecationWarning',
|
|
'In future versions of Node.js, fs.rmdir(path, { recursive: true }) ' +
|
|
'will throw if path does not exist or is a file. Use fs.rm(path, ' +
|
|
'{ recursive: true, force: true }) instead',
|
|
'DEP0147'
|
|
);
|
|
fs.rmdir(
|
|
path.join(tmpdir.path, 'noexist.txt'),
|
|
{ recursive: true },
|
|
common.mustCall()
|
|
);
|
|
}
|