diff options
Diffstat (limited to 'packages/integrations/node/test/image.test.js')
-rw-r--r-- | packages/integrations/node/test/image.test.js | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/packages/integrations/node/test/image.test.js b/packages/integrations/node/test/image.test.js new file mode 100644 index 000000000..c4758f96b --- /dev/null +++ b/packages/integrations/node/test/image.test.js @@ -0,0 +1,36 @@ +import * as assert from 'node:assert/strict'; +import { after, before, describe, it } from 'node:test'; +import nodejs from '../dist/index.js'; +import { loadFixture } from './test-utils.js'; + +// Temporary skip until we figure out the "Could not find Sharp" issue as `sharp` is bundled +describe.skip('Image endpoint', () => { + /** @type {import('./test-utils').Fixture} */ + let fixture; + let devPreview; + + before(async () => { + fixture = await loadFixture({ + root: './fixtures/image/', + output: 'server', + adapter: nodejs({ mode: 'standalone' }), + }); + await fixture.build(); + devPreview = await fixture.preview(); + }); + + after(async () => { + await devPreview.stop(); + }); + + it('it returns images', async () => { + const res = await fixture.fetch('/'); + assert.equal(res.status, 200); + + const resImage = await fixture.fetch( + '/_image?href=/_astro/some_penguin.97ef5f92.png&w=50&f=webp' + ); + + assert.equal(resImage.status, 200); + }); +}); |