diff options
Diffstat (limited to 'packages/integrations/image/test/image-ssr-dev.test.js')
-rw-r--r-- | packages/integrations/image/test/image-ssr-dev.test.js | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/packages/integrations/image/test/image-ssr-dev.test.js b/packages/integrations/image/test/image-ssr-dev.test.js index a280268d0..2251bf071 100644 --- a/packages/integrations/image/test/image-ssr-dev.test.js +++ b/packages/integrations/image/test/image-ssr-dev.test.js @@ -59,6 +59,17 @@ describe('SSR images - dev', function () { contentType: 'image/webp', }, { + title: 'Remote wihtout file extension', + id: '#ipsum', + url: '/_image', + query: { + w: '200', + h: '300', + href: 'https://picsum.photos/200/300', + }, + contentType: 'image/jpeg', + }, + { title: 'Public images', id: '#hero', url: '/_image', @@ -150,6 +161,17 @@ describe('SSR images with subpath - dev', function () { contentType: 'image/webp', }, { + title: 'Remote wihtout file extension', + id: '#ipsum', + url: '/_image', + query: { + w: '200', + h: '300', + href: 'https://picsum.photos/200/300', + }, + contentType: 'image/jpeg', + }, + { title: 'Public images', id: '#hero', url: '/_image', |