css: add matcher test w/ libdom

This commit is contained in:
Pierre Tachoire
2024-03-18 09:49:12 +01:00
parent b59fd9b1fb
commit 954a693586
4 changed files with 60 additions and 5 deletions

View File

@@ -98,11 +98,17 @@ pub fn main() !void {
}
test {
const AsyncTest = @import("async/test.zig");
std.testing.refAllDecls(AsyncTest);
const asyncTest = @import("async/test.zig");
std.testing.refAllDecls(asyncTest);
const DumpTest = @import("browser/dump.zig");
std.testing.refAllDecls(DumpTest);
const dumpTest = @import("browser/dump.zig");
std.testing.refAllDecls(dumpTest);
const cssMatchTest = @import("css/match_test.zig");
std.testing.refAllDecls(cssMatchTest);
const cssLibdomTest = @import("css/libdom_test.zig");
std.testing.refAllDecls(cssLibdomTest);
}
fn testJSRuntime() !void {