From eb25f6cc1caf80f6122fe8bf33998f6ed996931a Mon Sep 17 00:00:00 2001 From: Karl Seguin Date: Fri, 14 Aug 2026 10:50:13 +0800 Subject: [PATCH] chore: silence test log --- src/browser/webapi/Console.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/browser/webapi/Console.zig b/src/browser/webapi/Console.zig index b8c056bd3..3a53a0957 100644 --- a/src/browser/webapi/Console.zig +++ b/src/browser/webapi/Console.zig @@ -269,5 +269,6 @@ pub const JsApi = struct { const testing = @import("../../testing.zig"); test "WebApi: Console" { + testing.expectLog(&.{ .js, .js, .js }); try testing.htmlRunner("console", .{}); }