diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/lib/content-function.js | 7 | ||||
-rw-r--r-- | test/snapshot/image.js | 4 |
2 files changed, 4 insertions, 7 deletions
diff --git a/test/lib/content-function.js b/test/lib/content-function.js index cd86e9bc..bb12be82 100644 --- a/test/lib/content-function.js +++ b/test/lib/content-function.js @@ -49,15 +49,8 @@ export function testContentFunctions(t, message, fn) { thumb, to, urls, - appendIndexHTML: false, - getColors: c => getColors(c, {chroma}), - getDimensionsOfImagePath: () => [600, 600], - getThumbnailEqualOrSmaller: () => 'medium', - getThumbnailsAvailableForDimensions: () => - [['large', 800], ['medium', 400], ['small', 250]], - ...extraDependencies, }, }); diff --git a/test/snapshot/image.js b/test/snapshot/image.js index a8796e11..48dcfb69 100644 --- a/test/snapshot/image.js +++ b/test/snapshot/image.js @@ -9,6 +9,10 @@ testContentFunctions(t, 'image (snapshot)', async (t, evaluate) => { name: 'image', extraDependencies: { getSizeOfImagePath: () => 0, + getDimensionsOfImagePath: () => [600, 600], + getThumbnailEqualOrSmaller: () => 'medium', + getThumbnailsAvailableForDimensions: () => + [['large', 800], ['medium', 400], ['small', 250]], }, ...opts, }); |