aboutsummaryrefslogtreecommitdiff
path: root/src/cli/test_command.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli/test_command.zig')
-rw-r--r--src/cli/test_command.zig6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cli/test_command.zig b/src/cli/test_command.zig
index 14eca012e..0f4ec9407 100644
--- a/src/cli/test_command.zig
+++ b/src/cli/test_command.zig
@@ -720,10 +720,10 @@ pub const TestCommand = struct {
}
};
- var arena = bun.MimallocArena.init() catch @panic("Unexpected error in mimalloc");
+ // var arena = bun.MimallocArena.init() catch @panic("Unexpected error in mimalloc");
vm_.eventLoop().ensureWaker();
- vm_.arena = &arena;
- vm_.allocator = arena.allocator();
+ // vm_.arena = &arena;
+ vm_.allocator = bun.default_allocator;
var ctx = Context{ .reporter = reporter_, .vm = vm_, .files = files_, .allocator = allocator_ };
vm_.runWithAPILock(Context, &ctx, Context.begin);
}