benchmark: remove force option as force defaults to true

PR-URL: https://github.com/nodejs/node/pull/54203
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
This commit is contained in:
Yelim Koo 2024-08-07 00:20:45 +09:00 committed by GitHub
parent b47aa708a8
commit e1e7a417da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,7 +12,7 @@ const bench = common.createBenchmark(main, {
function main({ n }) {
tmpdir.refresh();
const options = { force: true, recursive: true };
const options = { recursive: true };
const src = path.join(__dirname, '../../test/fixtures/copy');
const dest = tmpdir.resolve(`${process.pid}/subdir/cp-bench-${process.pid}`);
bench.start();