Skip to content

Commit

Permalink
Revert "test: add test cases for fsPromises"
Browse files Browse the repository at this point in the history
This reverts commit c05c73a.

The commit breaks Raspberry Pi CI.

PR-URL: nodejs#19101
Ref: nodejs#19064 (comment)
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
Trott committed Mar 3, 2018
1 parent c05c73a commit 4bfc03b
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions test/parallel/test-fs-promises.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,8 @@ const fsPromises = require('fs/promises');
const {
access,
chmod,
chown,
copyFile,
fchmod,
fchown,
fdatasync,
fstat,
fsync,
Expand All @@ -29,8 +27,6 @@ const {
realpath,
rename,
rmdir,
lchmod,
lchown,
stat,
symlink,
write,
Expand Down Expand Up @@ -99,21 +95,6 @@ function verifyStatObject(stat) {

await chmod(dest, 0o666);
await fchmod(handle, 0o666);
// lchmod is only available on OSX
if (common.isOSX) {
await lchmod(dest, 0o666);
}

if (!common.isWindows) {
const gid = process.getgid();
const uid = process.getuid();
await chown(dest, uid, gid);
await fchown(handle, uid, gid);
// lchown is only available on OSX
if (common.isOSX) {
await lchown(dest, uid, gid);
}
}

await utimes(dest, new Date(), new Date());

Expand Down

0 comments on commit 4bfc03b

Please sign in to comment.