diff options
Diffstat (limited to 'packages/integrations/image/test/no-alt-text-image-ssr.test.js')
-rw-r--r-- | packages/integrations/image/test/no-alt-text-image-ssr.test.js | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/packages/integrations/image/test/no-alt-text-image-ssr.test.js b/packages/integrations/image/test/no-alt-text-image-ssr.test.js new file mode 100644 index 000000000..95d6572bc --- /dev/null +++ b/packages/integrations/image/test/no-alt-text-image-ssr.test.js @@ -0,0 +1,33 @@ +import { expect } from 'chai'; +import { loadFixture } from './test-utils.js'; +import testAdapter from '../../../astro/test/test-adapter.js'; + +let fixture; + +const errorMessage = + 'The <Image> component requires you provide alt text. If this image does not require an accessible label, set alt="".'; + +/** TODO: enable the test once missing alt text throws an error instead of a console warning */ +describe.skip('SSR image without alt text', function () { + before(async () => { + fixture = await loadFixture({ + root: './fixtures/no-alt-text-image/', + adapter: testAdapter({ streaming: false }), + output: 'server', + }); + await fixture.build(); + }); + + it('throws during build', async () => { + try { + const app = await fixture.loadTestAdapterApp(); + const request = new Request('http://example.com/'); + const response = await app.render(request); + await response.text(); + } catch (err) { + expect(err.message).to.equal(errorMessage); + return; + } + expect.fail(0, 1, 'Exception not thrown'); + }); +}); |