diff --git a/src/main_tests.zig b/src/main_tests.zig index 88acd1a5..8028827c 100644 --- a/src/main_tests.zig +++ b/src/main_tests.zig @@ -337,7 +337,12 @@ test { std.testing.refAllDecls(@import("generate.zig")); std.testing.refAllDecls(@import("cdp/msg.zig")); - std.testing.refAllDecls(@import("server.zig")); + + // Don't use refAllDecls, as this will pull in the entire project + // and break the test build. + // We should fix this. See this branch & the commit message for details: + // https://github.com/karlseguin/browser/commit/193ab5ceab3d3758ea06db04f7690460d79eb79e + _ = @import("server.zig"); } fn testJSRuntime(alloc: std.mem.Allocator) !void {