]> git.r.bdr.sh - rbdr/forum/blame - src/components/error_block/error_block.test.js
Add tests for first batch of components
[rbdr/forum] / src / components / error_block / error_block.test.js
CommitLineData
879fa389
RBR
1import '@testing-library/jest-dom/extend-expect';
2
3import { render } from '@testing-library/svelte';
4import '$/config/i18n';
5
6import ErrorBlock from './error_block.svelte';
7
8describe('Glyph component', () => {
9
10 test('Should act as an image', () => {
11
12 const results = render(ErrorBlock, { props: {
13 message: 'An error has, sadly, destroyed everything.'
14 } });
15
16 expect(results.getByText('An error has, sadly, destroyed everything.'))
17 .toBeVisible();
18 });
19});
20