From bdf63673f3b81ab190e2ce5d977bcd959554b19f Mon Sep 17 00:00:00 2001 From: Bob Farrell Date: Mon, 3 Jun 2024 22:12:00 +0100 Subject: [PATCH] Compile static view content before tests --- build.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/build.zig b/build.zig index 509db41..77399fa 100644 --- a/build.zig +++ b/build.zig @@ -227,6 +227,7 @@ pub fn jetzigInit(b: *std.Build, exe: *std.Build.Step.Compile, options: JetzigIn const test_step = b.step("jetzig:test", "Run tests"); test_step.dependOn(&run_exe_unit_tests.step); + test_step.dependOn(&run_static_routes_cmd.step); exe_unit_tests.root_module.addImport("routes", routes_module); }