summaryrefslogtreecommitdiff
path: root/test/parallel/test-cli-syntax-piped-good.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-cli-syntax-piped-good.js')
-rw-r--r--test/parallel/test-cli-syntax-piped-good.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-cli-syntax-piped-good.js b/test/parallel/test-cli-syntax-piped-good.js
index 7e0cfbc89a..79716fcf39 100644
--- a/test/parallel/test-cli-syntax-piped-good.js
+++ b/test/parallel/test-cli-syntax-piped-good.js
@@ -12,8 +12,8 @@ const syntaxArgs = [
['--check']
];
-// should not execute code piped from stdin with --check
-// loop each possible option, `-c` or `--check`
+// Should not execute code piped from stdin with --check.
+// Loop each possible option, `-c` or `--check`.
syntaxArgs.forEach(function(args) {
const stdin = 'throw new Error("should not get run");';
const c = spawnSync(node, args, { encoding: 'utf8', input: stdin });