diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-05-30 10:01:00 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-09-01 14:06:15 -0300 |
commit | 145a4a292dea7dccb2bb9b58a760db32948c3918 (patch) | |
tree | ccd4c670f354ea97350a2e0bcbda79f0964695a8 /test | |
parent | 029210cc329a015a939472a688209d3f3423242b (diff) |
test: snapshot how thumbnail details are exposed in images
Diffstat (limited to 'test')
-rw-r--r-- | test/snapshot/image.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/snapshot/image.js b/test/snapshot/image.js index 5e12cc25..a8796e11 100644 --- a/test/snapshot/image.js +++ b/test/snapshot/image.js @@ -98,4 +98,19 @@ testContentFunctions(t, 'image (snapshot)', async (t, evaluate) => { path: ['media.albumCover', 'beyond-canon', 'png'], }, }); + + evaluate.snapshot('thumbnail details', { + name: 'image', + extraDependencies: { + getSizeOfImagePath: () => 0, + getDimensionsOfImagePath: () => [900, 1200], + getThumbnailsAvailableForDimensions: () => + [['voluminous', 1200], ['middling', 900], ['petite', 20]], + getThumbnailEqualOrSmaller: () => 'voluminous', + }, + slots: { + thumb: 'gargantuan', + path: ['media.albumCover', 'beyond-canon', 'png'], + }, + }); }); |