From 14cfd661d488e17e00554f705b709b6eb5d5b2fe Mon Sep 17 00:00:00 2001 From: Ignacio Hagopian Date: Sat, 26 Aug 2023 14:46:57 -0300 Subject: [PATCH] update main with test Signed-off-by: Ignacio Hagopian --- src/main.zig | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main.zig b/src/main.zig index 9286a93..e6582dc 100644 --- a/src/main.zig +++ b/src/main.zig @@ -1,2 +1,9 @@ const std = @import("std"); const testing = std.testing; + +test "tests" { + std.testing.log_level = .debug; + + _ = @import("poseidon.zig"); + _ = @import("bn254/tests.zig"); +}