Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Postpone extra check #2026

Merged
merged 1 commit into from
Oct 7, 2023
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
6 changes: 3 additions & 3 deletions lib/command.js
Original file line number Diff line number Diff line change
Expand Up @@ -751,9 +751,9 @@ Expecting one of '${allowedValues.join("', '")}'`);
if (this.options.length) {
throw new Error('call .storeOptionsAsProperties() before adding options');
}
if (Object.keys(this._optionValues).length) {
throw new Error('call .storeOptionsAsProperties() before setting option values');
}
// if (Object.keys(this._optionValues).length) {
// throw new Error('call .storeOptionsAsProperties() before setting option values');
// }
this._storeOptionsAsProperties = !!storeAsProperties;
return this;
}
Expand Down
14 changes: 7 additions & 7 deletions tests/commander.configureCommand.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@
}).toThrow();
});

test('when storeOptionsAsProperties() after setting option value then throw', () => {
const program = new commander.Command();
program.setOptionValue('foo', 'bar');
expect(() => {
program.storeOptionsAsProperties();
}).toThrow();
});
// test('when storeOptionsAsProperties() after setting option value then throw', () => {

Check warning on line 88 in tests/commander.configureCommand.test.js

View workflow job for this annotation

GitHub Actions / Test on node 16.x and ubuntu-latest

Some tests seem to be commented

Check warning on line 88 in tests/commander.configureCommand.test.js

View workflow job for this annotation

GitHub Actions / Test on node 16.x and windows-latest

Some tests seem to be commented

Check warning on line 88 in tests/commander.configureCommand.test.js

View workflow job for this annotation

GitHub Actions / Test on node 16.x and macos-latest

Some tests seem to be commented

Check warning on line 88 in tests/commander.configureCommand.test.js

View workflow job for this annotation

GitHub Actions / Test on node 18.x and ubuntu-latest

Some tests seem to be commented

Check warning on line 88 in tests/commander.configureCommand.test.js

View workflow job for this annotation

GitHub Actions / Test on node 18.x and windows-latest

Some tests seem to be commented

Check warning on line 88 in tests/commander.configureCommand.test.js

View workflow job for this annotation

GitHub Actions / Test on node 18.x and macos-latest

Some tests seem to be commented

Check warning on line 88 in tests/commander.configureCommand.test.js

View workflow job for this annotation

GitHub Actions / Test on node 20.x and ubuntu-latest

Some tests seem to be commented

Check warning on line 88 in tests/commander.configureCommand.test.js

View workflow job for this annotation

GitHub Actions / Test on node 20.x and windows-latest

Some tests seem to be commented

Check warning on line 88 in tests/commander.configureCommand.test.js

View workflow job for this annotation

GitHub Actions / Test on node 20.x and macos-latest

Some tests seem to be commented
// const program = new commander.Command();
// program.setOptionValue('foo', 'bar');
// expect(() => {
// program.storeOptionsAsProperties();
// }).toThrow();
// });