Merge pull request #1159 from lightpanda-io/make_test_filter_compiler

Filter out the huge compile command when using `make test`
This commit is contained in:
Karl Seguin
2025-10-20 15:36:16 +08:00
committed by GitHub
2 changed files with 10 additions and 3 deletions

View File

@@ -212,7 +212,7 @@ pub fn addFromElement(self: *ScriptManager, element: *parser.Element, comptime c
if (source == .@"inline" and self.scripts.first == null) {
// inline script with no pending scripts, execute it immediately.
// (if there is a pending script, then we cannot execute this immediately
// as it needs to best executed in order)
// as it needs to be executed in order)
return script.eval(page);
}