You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constconsole_width=b.option(u32, "console-width", "Number of columns in the output: affects line wraps. (Defaults to 80)") orelse80;
13
13
constfast_compile=b.option(bool, "fast-compile", "Sacrifices some (rather minor) features for compilation speed") orelsefalse;
14
14
constdisable=b.option(bool, "disable", "Disables assertions and test case registration") orelsefalse;
15
+
constdefault_reporter=b.option([]constu8, "default-reporter", "Choose the reporter to use when it is not specified via the --reporter option. (Defaults to 'console')") orelse"console";
0 commit comments