diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-05-30 09:51:26 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-09-01 14:06:07 -0300 |
commit | 029210cc329a015a939472a688209d3f3423242b (patch) | |
tree | d0b3d682b699b0ba9e21642f4884c937d7f9f97c /test/snapshot | |
parent | 641d821d03ad96bca28b8b09d2408457443a9f7f (diff) |
thumbs, content: integrate cached thumb sizes into content
Diffstat (limited to 'test/snapshot')
-rw-r--r-- | test/snapshot/image.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/snapshot/image.js b/test/snapshot/image.js index 6bec1cca..5e12cc25 100644 --- a/test/snapshot/image.js +++ b/test/snapshot/image.js @@ -8,7 +8,7 @@ testContentFunctions(t, 'image (snapshot)', async (t, evaluate) => { evaluate.snapshot(message, { name: 'image', extraDependencies: { - getSizeOfImageFile: () => 0, + getSizeOfImagePath: () => 0, }, ...opts, }); @@ -79,7 +79,7 @@ testContentFunctions(t, 'image (snapshot)', async (t, evaluate) => { quickSnapshot('link with file size', { extraDependencies: { - getSizeOfImageFile: () => 10 ** 6, + getSizeOfImagePath: () => 10 ** 6, }, slots: { path: ['media.albumCover', 'pingas', 'png'], |