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 0753eb7 commit 68e0ffcCopy full SHA for 68e0ffc
src/main_tests.zig
@@ -337,7 +337,12 @@ test {
337
338
std.testing.refAllDecls(@import("generate.zig"));
339
std.testing.refAllDecls(@import("cdp/msg.zig"));
340
- std.testing.refAllDecls(@import("server.zig"));
+
341
+ // Don't use refAllDecls, as this will pull in the entire project
342
+ // and break the test build.
343
+ // We should fix this. See this branch & the commit message for details:
344
+ // https://github.com/karlseguin/browser/commit/193ab5ceab3d3758ea06db04f7690460d79eb79e
345
+ _ = @import("server.zig");
346
}
347
348
fn testJSRuntime(alloc: std.mem.Allocator) !void {
0 commit comments