---
It seems to fix it, that's what I used in my projects, although I'm not 100%
sure if this is really the right fix as I couldn't find anything about this
in zig changelog or somewhere.
build.zig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.zig b/build.zig
index f92ea456f363..7c845b43ed83 100644
--- a/build.zig
@@ -17,7 +17,7 @@ pub fn build(b: *Builder) !void {
},
);
const test_step = b.step("test", "Run all tests");
- test_step.dependOn(&tests.step);+ test_step.dependOn(&b.addRunArtifact(tests).step); {
const exe = b.addExecutable(
--
2.42.0