diff --git a/build.zig b/build.zig index 7ee2e84..b69ecf2 100644 --- a/build.zig +++ b/build.zig @@ -74,6 +74,6 @@ fn zed(b: *std.build.Builder, target: anytype, optimize: anytype) void { .optimize = optimize, }); - const runcmd = tests.run(); + const runcmd = b.addRunArtifact(tests); test_step.dependOn(&runcmd.step); }