Skip to content

Commit

Permalink
build: add empty test step
Browse files Browse the repository at this point in the history
  • Loading branch information
alichraghi committed Aug 12, 2023
1 parent 23f41c6 commit ec1f089
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand Down

0 comments on commit ec1f089

Please sign in to comment.