diff options
Diffstat (limited to 'src/cli/test_command.zig')
-rw-r--r-- | src/cli/test_command.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cli/test_command.zig b/src/cli/test_command.zig index 14eca012e..819aceb19 100644 --- a/src/cli/test_command.zig +++ b/src/cli/test_command.zig @@ -457,6 +457,8 @@ pub const TestCommand = struct { .run_todo = ctx.test_options.run_todo, .only = ctx.test_options.only, .bail = ctx.test_options.bail, + .filter_regex = ctx.test_options.test_filter_regex, + .filter_buffer = bun.MutableString.init(ctx.allocator, 0) catch unreachable, .snapshots = Snapshots{ .allocator = ctx.allocator, .update_snapshots = ctx.test_options.update_snapshots, |