diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-04-18 21:12:00 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-04-18 21:12:00 -0300 |
commit | 985feb1437831198383f37bc93982a11a857fd6b (patch) | |
tree | 5798da69faf911f04c2894d5c4c1d4eff75b8231 /test/lib | |
parent | 50f99e7d509d68ae88250904cf0bacfc2f4e4c61 (diff) |
test: load content dependencies quietly
Diffstat (limited to 'test/lib')
-rw-r--r-- | test/lib/content-function.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/lib/content-function.js b/test/lib/content-function.js index 30fa78e0..ac527abc 100644 --- a/test/lib/content-function.js +++ b/test/lib/content-function.js @@ -63,7 +63,10 @@ export function testContentFunctions(t, message, fn) { } loadedContentDependencies = await asyncCleanCatchAggregate(() => - quickLoadContentDependencies(opts)); + quickLoadContentDependencies({ + logging: false, + ...opts, + })); }; evaluate.snapshot = (...args) => { |