From 78d779332780b06661f884d152ec0b1ea18e8784 Mon Sep 17 00:00:00 2001 From: Karl Seguin Date: Mon, 15 Jun 2026 16:59:04 +0800 Subject: [PATCH] dev: silence a test that uses/needs console --- src/cdp/domains/runtime.zig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/cdp/domains/runtime.zig b/src/cdp/domains/runtime.zig index 6228ee738..f2758cd92 100644 --- a/src/cdp/domains/runtime.zig +++ b/src/cdp/domains/runtime.zig @@ -167,6 +167,9 @@ pub fn consoleMessage(arena: Allocator, bc: *CDP.BrowserContext, event: *const N const testing = @import("../testing.zig"); test "cdp.runtime: consoleAPICalled type matches the console method" { + const filter: testing.LogFilter = .init(&.{.js}); + defer filter.deinit(); + // Wire types per the CDP protocol: console.log -> "log", // console.warn -> "warning" (not "warn"), console.info -> "info", // console.error -> "error", console.debug -> "debug".