enable tests on lambda.zig

This commit is contained in:
Emil Lerch 2023-09-20 14:20:39 -07:00
parent aff5196dbb
commit 31321a4871
Signed by: lobo
GPG Key ID: A7B62D657EF764F8

View File

@ -120,3 +120,10 @@ fn processRequest(aa: std.mem.Allocator, server: *std.http.Server, event_handler
_ = try res.writer().writeAll(response_bytes);
try res.finish();
}
test {
std.testing.refAllDecls(@This()); // standalone, standalone web server
std.testing.refAllDecls(@import("lambda.zig")); // lambda
// TODO: re-enable
// std.testing.refAllDecls(@import("flexilib.zig")); // flexilib
}