From ec1f0894a15835b7e2cfaf8e5939e49d65152262 Mon Sep 17 00:00:00 2001 From: Ali Chraghi Date: Sat, 12 Aug 2023 19:16:32 +0330 Subject: [PATCH] build: add empty test step --- build.zig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 81c63b31e..2ec0e5968 100644 --- a/build.zig +++ b/build.zig @@ -32,7 +32,8 @@ pub fn build(b: *Build) !void { // } // b.installArtifact(lib); - // const test_step = b.step("test", "Run library tests"); + const test_step = b.step("test", "Run library tests"); + _ = test_step; // const main_tests = b.addTest(.{ // .name = "glfw-tests", // .root_source_file = .{ .path = "src/main.zig" },