authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2025-02-16 14:59:29 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2025-02-16 14:59:29 -08:00
logd6345e1be7b622a3a04c7064065ab6765daa363f
treea52a213845ae4efad4c40a68eb3507dab69c056b
parentd4f8a6437cb5068072e4df338af77dde15ad3625

that way didnt actually run the tests rip


2 files changed, 1 insertions(+), 7 deletions(-)

build.zig+1-1
...@@ -10,7 +10,7 @@ pub fn build(b: *std.Build) void {...@@ -10,7 +10,7 @@ pub fn build(b: *std.Build) void {
10 });10 });
1111
12 const tests = b.addTest(.{12 const tests = b.addTest(.{
13 .root_source_file = b.path("test.zig"),13 .root_source_file = b.path("src/lib.zig"),
14 .target = target,14 .target = target,
15 .optimize = mode,15 .optimize = mode,
16 });16 });
test.zig deleted-6
...@@ -1,6 +0,0 @@
1const std = @import("std");
2const extras = @import("extras");
3
4test {
5 std.testing.refAllDeclsRecursive(extras);
6}