We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a357d23 commit de56a29Copy full SHA for de56a29
1 file changed
build.zig
@@ -1,6 +1,7 @@
1
const std = @import("std");
2
const fs = std.fs;
3
const mem = std.mem;
4
+const exetest = @import("./src/root.zig");
5
6
pub fn build(b: *std.Build) !void {
7
const target = b.standardTargetOptions(.{});
@@ -34,9 +35,6 @@ pub fn build(b: *std.Build) !void {
34
35
});
36
b.installArtifact(test_exe);
37
- // NOTE: End user will use b.addDependency
38
- const exetest = @import("src/root.zig");
39
-
40
const run_integration_tests = exetest.add(b, .{
41
.name = "integration",
42
.test_file = b.path("src/test.zig"),
0 commit comments