repos / zmx

session persistence for terminal processes
git clone https://github.com/neurosnap/zmx.git

commit
0fdf98f
parent
651dd7c
author
Eric Bower
date
2025-12-12 09:39:40 -0500 EST
chore: remove dummy integration tests
2 files changed,  +0, -12
M build.zig
+0, -11
 1@@ -64,17 +64,6 @@ pub fn build(b: *std.Build) void {
 2     const run_exe_unit_tests = b.addRunArtifact(exe_unit_tests);
 3     test_step.dependOn(&run_exe_unit_tests.step);
 4 
 5-    const integration_test_mod = b.createModule(.{
 6-        .root_source_file = b.path("src/test.zig"),
 7-        .target = target,
 8-        .optimize = optimize,
 9-    });
10-    const integration_tests = b.addTest(.{
11-        .root_module = integration_test_mod,
12-    });
13-    const run_integration_tests = b.addRunArtifact(integration_tests);
14-    test_step.dependOn(&run_integration_tests.step);
15-
16     // This is where the interesting part begins.
17     // As you can see we are re-defining the same executable but
18     // we're binding it to a dedicated build step.
D src/test.zig
+0, -1
1@@ -1 +0,0 @@
2-test "dummy" {}