Skip to content

Commit d932169

Browse files
Claude Botclaude
andcommitted
Update --only-failures help text to not reference --dots
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent ebecc68 commit d932169

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cli/Arguments.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ pub const test_only_params = [_]ParamType{
207207
clap.parseParam("--reporter <STR> Test output reporter format. Available: 'junit' (requires --reporter-outfile), 'dots'. Default: console output.") catch unreachable,
208208
clap.parseParam("--reporter-outfile <STR> Output file path for the reporter format (required with --reporter).") catch unreachable,
209209
clap.parseParam("--dots Enable dots reporter. Shorthand for --reporter=dots.") catch unreachable,
210-
clap.parseParam("--only-failures Only display test failures. Similar to --dots but without printing dots.") catch unreachable,
210+
clap.parseParam("--only-failures Only display test failures, hiding passing tests.") catch unreachable,
211211
clap.parseParam("--max-concurrency <NUMBER> Maximum number of concurrent tests to execute at once. Default is 20.") catch unreachable,
212212
};
213213
pub const test_params = test_only_params ++ runtime_params_ ++ transpiler_params_ ++ base_params_;

0 commit comments

Comments
 (0)