aboutsummaryrefslogtreecommitdiff
path: root/test/sequential/test-cli-syntax-good.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/sequential/test-cli-syntax-good.js')
-rw-r--r--test/sequential/test-cli-syntax-good.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/sequential/test-cli-syntax-good.js b/test/sequential/test-cli-syntax-good.js
index 1c2b3cbe55..48581e7733 100644
--- a/test/sequential/test-cli-syntax-good.js
+++ b/test/sequential/test-cli-syntax-good.js
@@ -7,13 +7,13 @@ const fixtures = require('../common/fixtures');
const node = process.execPath;
-// test both sets of arguments that check syntax
+// Test both sets of arguments that check syntax
const syntaxArgs = [
['-c'],
['--check']
];
-// test good syntax with and without shebang
+// Test good syntax with and without shebang
[
'syntax/good_syntax.js',
'syntax/good_syntax',
@@ -23,7 +23,7 @@ const syntaxArgs = [
].forEach(function(file) {
file = fixtures.path(file);
- // loop each possible option, `-c` or `--check`
+ // Loop each possible option, `-c` or `--check`
syntaxArgs.forEach(function(args) {
const _args = args.concat(file);