We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb4cd4f commit 4785fd0Copy full SHA for 4785fd0
src/run_tests.zig
@@ -331,7 +331,12 @@ test {
331
332
std.testing.refAllDecls(@import("generate.zig"));
333
std.testing.refAllDecls(@import("cdp/msg.zig"));
334
- std.testing.refAllDecls(@import("server.zig"));
+
335
+ // Don't use refAllDecls, as this will pull in the entire project
336
+ // and break the test build.
337
+ // We should fix this. See this branch & the commit message for details:
338
+ // https://github.com/karlseguin/browser/commit/193ab5ceab3d3758ea06db04f7690460d79eb79e
339
+ _ = @import("server.zig");
340
}
341
342
fn testJSRuntime(alloc: std.mem.Allocator) !void {
0 commit comments