summaryrefslogtreecommitdiff
path: root/cli/tests/node_compat/test/parallel/test-os.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/node_compat/test/parallel/test-os.js')
-rw-r--r--cli/tests/node_compat/test/parallel/test-os.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/tests/node_compat/test/parallel/test-os.js b/cli/tests/node_compat/test/parallel/test-os.js
index 09d97222c..d8425d0d5 100644
--- a/cli/tests/node_compat/test/parallel/test-os.js
+++ b/cli/tests/node_compat/test/parallel/test-os.js
@@ -216,7 +216,6 @@ if (common.isWindows && process.env.USERPROFILE) {
process.env.HOME = home;
}
-/* TODO(kt3k): Enable this test
const pwd = os.userInfo();
is.object(pwd);
const pwdBuf = os.userInfo({ encoding: 'buffer' });
@@ -245,7 +244,7 @@ is.string(pwd.username);
assert.ok(pwd.homedir.includes(path.sep));
assert.strictEqual(pwd.username, pwdBuf.username.toString('utf8'));
assert.strictEqual(pwd.homedir, pwdBuf.homedir.toString('utf8'));
-*/
+
assert.strictEqual(`${os.hostname}`, os.hostname());
assert.strictEqual(`${os.homedir}`, os.homedir());