| ... | ... | @@ -37,7 +37,8 @@ pub fn main() void { |
| 37 | 37 | .dont_print_on_dumb = true, |
| 38 | 38 | }; |
| 39 | 39 | const root_node = progress.start("Test", test_fn_list.len); |
| 40 | | const have_tty = progress.terminal != null and progress.supports_ansi_escape_codes; |
| 40 | const have_tty = progress.terminal != null and |
| 41 | (progress.supports_ansi_escape_codes or progress.is_windows_terminal); |
| 41 | 42 | |
| 42 | 43 | var async_frame_buffer: []align(std.Target.stack_align) u8 = undefined; |
| 43 | 44 | // TODO this is on the next line (using `undefined` above) because otherwise zig incorrectly |