Forgot test_runner

Signed-off-by: Francis Bouvier <francis@lightpanda.io>
This commit is contained in:
Francis Bouvier
2024-01-10 16:08:41 +01:00
parent a5dfa6cb44
commit 1e4ddf580d
2 changed files with 10 additions and 1 deletions

9
src/test_runner.zig Normal file
View File

@@ -0,0 +1,9 @@
const std = @import("std");
const tests = @import("run_tests.zig");
pub const Types = tests.Types;
pub fn main() !void {
try tests.main();
}