From 84f051a46cbbbaedf600c22597c1985ed1be1c73 Mon Sep 17 00:00:00 2001 From: Masahiro Iuchi Date: Sun, 31 Mar 2024 20:15:39 +0900 Subject: [PATCH 1/2] fix "codeceptjs" command outputs help message twice --- bin/codecept.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/codecept.js b/bin/codecept.js index 9d8ddfc3c..e1386c3c6 100755 --- a/bin/codecept.js +++ b/bin/codecept.js @@ -236,5 +236,6 @@ program.on('command:*', (cmd) => { if (process.argv.length <= 2) { program.outputHelp(); +} else { + program.parse(process.argv); } -program.parse(process.argv); From bbd65f0eea43b011ef32afe2c81e3cece7f4d89c Mon Sep 17 00:00:00 2001 From: Masahiro Iuchi Date: Sun, 31 Mar 2024 20:15:52 +0900 Subject: [PATCH 2/2] add tests --- test/runner/help_test.js | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 test/runner/help_test.js diff --git a/test/runner/help_test.js b/test/runner/help_test.js new file mode 100644 index 000000000..b9e0bf405 --- /dev/null +++ b/test/runner/help_test.js @@ -0,0 +1,37 @@ +const assert = require('assert'); +const path = require('path'); +const exec = require('child_process').exec; + +const runner = path.join(__dirname, '/../../bin/codecept.js'); + +describe('help option', () => { + it('should print help message with --help option', (done) => { + exec(`${runner} --help`, (err, stdout) => { + stdout.should.include('Usage:'); + stdout.should.include('Options:'); + stdout.should.include('Commands:'); + assert(!err); + done(); + }); + }); + + it('should print help message with -h option', (done) => { + exec(`${runner} -h`, (err, stdout) => { + stdout.should.include('Usage:'); + stdout.should.include('Options:'); + stdout.should.include('Commands:'); + assert(!err); + done(); + }); + }); + + it('should print help message with no option', (done) => { + exec(`${runner}`, (err, stdout) => { + stdout.should.include('Usage:'); + stdout.should.include('Options:'); + stdout.should.include('Commands:'); + assert(!err); + done(); + }); + }); +});