mirror of
https://github.com/lightpanda-io/browser.git
synced 2025-10-30 07:31:47 +00:00
css: add matcher test w/ libdom
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user