Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix: "codeceptjs" command outputs help message twice #4278

Merged
merged 2 commits into from
Mar 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion bin/codecept.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,5 +236,6 @@ program.on('command:*', (cmd) => {

if (process.argv.length <= 2) {
program.outputHelp();
} else {
program.parse(process.argv);
}
program.parse(process.argv);
37 changes: 37 additions & 0 deletions test/runner/help_test.js
Original file line number Diff line number Diff line change
@@ -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();
});
});
});
Loading