diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-04-05 21:23:30 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-04-05 21:24:13 -0300 |
commit | 64885f8124106ef6e5ed400ad3bf2a813ccb0cd5 (patch) | |
tree | e0bcf5765d02e87fd24e498cd6dc8c46e23be528 /test | |
parent | d2b8680d36d31e95840704cbc63116d1ff8b0c09 (diff) |
test: pass thumb util into extraDependencies
Diffstat (limited to 'test')
-rw-r--r-- | test/lib/content-function.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/lib/content-function.js b/test/lib/content-function.js index 692d5109..30fa78e0 100644 --- a/test/lib/content-function.js +++ b/test/lib/content-function.js @@ -10,7 +10,7 @@ import urlSpec from '../../src/url-spec.js'; import * as html from '../../src/util/html.js'; import {empty, showAggregate} from '../../src/util/sugar.js'; import {getColors} from '../../src/util/colors.js'; -import {generateURLs} from '../../src/util/urls.js'; +import {generateURLs, thumb} from '../../src/util/urls.js'; import {processLanguageFile} from '../../src/data/language.js'; const __dirname = path.dirname(fileURLToPath(import.meta.url)); @@ -46,6 +46,7 @@ export function testContentFunctions(t, message, fn) { extraDependencies: { html, language, + thumb, to, urls, appendIndexHTML: false, |