mirror of https://github.com/nodejs/node.git
test: reduce fs calls in test-fs-existssync-false
PR-URL: https://github.com/nodejs/node/pull/54815 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>pull/54825/head
parent
0f2f9b6b15
commit
cc780ddf1e
|
@ -18,15 +18,13 @@ tmpdir.refresh();
|
||||||
// Make a long path.
|
// Make a long path.
|
||||||
for (let i = 0; i < 50; i++) {
|
for (let i = 0; i < 50; i++) {
|
||||||
dir = `${dir}/1234567890`;
|
dir = `${dir}/1234567890`;
|
||||||
try {
|
|
||||||
fs.mkdirSync(dir, '0777');
|
|
||||||
} catch (e) {
|
|
||||||
if (e.code !== 'EEXIST') {
|
|
||||||
throw e;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fs.mkdirSync(dir, {
|
||||||
|
mode: '0777',
|
||||||
|
recursive: true,
|
||||||
|
});
|
||||||
|
|
||||||
// Test if file exists synchronously
|
// Test if file exists synchronously
|
||||||
assert(fs.existsSync(dir), 'Directory is not accessible');
|
assert(fs.existsSync(dir), 'Directory is not accessible');
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue