We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f6cc0ef + 126f604 commit 46c9abaCopy full SHA for 46c9aba
src/commands/apex/run/test.ts
@@ -82,10 +82,13 @@ export default class Test extends SfCommand<RunCommandResult> {
82
summary: messages.getMessage('flags.tests.summary'),
83
description: messages.getMessage('flags.tests.description'),
84
}),
85
+ // we want to pass `undefined` to the API
86
+ // eslint-disable-next-line sf-plugin/flag-min-max-default
87
wait: Flags.duration({
88
unit: 'minutes',
89
char: 'w',
90
summary: messages.getMessage('flags.wait.summary'),
91
+ min: 0,
92
93
synchronous: Flags.boolean({
94
char: 'y',
0 commit comments