summaryrefslogtreecommitdiff
path: root/packages/integrations/image/test/no-alt-text-image-ssg.test.js
blob: 4c998bdb49257e9e25ad3647f4d707bd9b899bd6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { expect } from 'chai';
import { loadFixture } from './test-utils.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('SSG image without alt text', function () {
	before(async () => {
		fixture = await loadFixture({ root: './fixtures/no-alt-text-image/' });
	});

	it('throws during build', async () => {
		try {
			await fixture.build();
		} catch (err) {
			expect(err.message).to.equal(errorMessage);
			return;
		}
		expect.fail(0, 1, 'Exception not thrown');
	});
});