diff --git a/build.zig b/build.zig index 90b04bc146d9b16e294f9e85863ecbce7872a0e4..c87f019410e38bec66fd4944b820d7ad36d29c24 100644 --- a/build.zig +++ b/build.zig @@ -35,6 +35,6 @@ pub fn build(b: *std.Build) void { const run_test = b.addRunArtifact(tests); run_test.has_side_effects = true; - const test_step = b.step("test", "Run the test suite"); + const test_step = b.step("test", "Run all library tests"); test_step.dependOn(&run_test.step); }