mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00

PR-URL: https://github.com/nodejs/node/pull/58893 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
15 lines
478 B
JavaScript
15 lines
478 B
JavaScript
'use strict';
|
|
|
|
// This test will fail because the the implementation does not properly
|
|
// handle the case when the path is a Buffer and the function is called
|
|
// in recursive mode.
|
|
|
|
// Refs: https://github.com/nodejs/node/issues/58892
|
|
|
|
const common = require('../common');
|
|
|
|
const { readdir } = require('node:fs');
|
|
const { join } = require('node:path');
|
|
|
|
const testDirPath = join(__dirname, '..', '..');
|
|
readdir(Buffer.from(testDirPath), { recursive: true }, common.mustCall());
|