This commit is contained in:
Karl Seguin
2026-07-14 11:55:59 +08:00
parent 10e91d0503
commit 46e90a984f
3 changed files with 3 additions and 3 deletions

View File

@@ -471,7 +471,7 @@ pub const JsApi = struct {
const testing = @import("../../testing.zig");
test "WebApi: Worker" {
const filter: testing.LogFilter = .init(&.{ .http });
const filter: testing.LogFilter = .init(&.{.http});
defer filter.deinit();
// Worker tests chain a worker-script fetch with a dynamic-import fetch

View File

@@ -177,7 +177,7 @@ pub const Build = struct {
const testing = @import("../../../../testing.zig");
test "WebApi: Script" {
const filter: testing.LogFilter = .init(&.{ .http });
const filter: testing.LogFilter = .init(&.{.http});
defer filter.deinit();
try testing.htmlRunner("element/html/script", .{});
}

View File

@@ -1172,7 +1172,7 @@ test "agent script runtime: re-goto on the same page object replaces its page" {
}
test "agent script runtime: a failed navigation rejects the goto promise" {
const filter: testing.LogFilter = .init(&.{ .frame });
const filter: testing.LogFilter = .init(&.{.frame});
defer filter.deinit();
defer testing.reset();