refactor build system: separate test module and streamline test dependencies

This commit is contained in:
2026-08-06 10:48:43 +02:00
parent 7ae1907189
commit d56010b064
2 changed files with 15 additions and 11 deletions

View File

@@ -8,8 +8,10 @@ pub const memory = @import("memory/util.zig");
pub const signals = @import("signals/models.zig");
pub const logging = @import("logging/log.zig");
//
const std = @import("std");
test {
_ = config;
_ = memory;
_ = signals;
std.testing.refAllDecls(@This());
}