]> git.r.bdr.sh - rbdr/forum/blob - src/lib/components/error_block/error_block.test.ts
d2ac4583159dee7d9b49dd411edd52a49597b7a5
[rbdr/forum] / src / lib / components / error_block / error_block.test.ts
1 /**
2 * @jest-environment jsdom
3 */
4
5 import '@testing-library/jest-dom/extend-expect';
6
7 import { render } from '@testing-library/svelte';
8 import '$lib/i18n';
9
10 import ErrorBlock from './error_block.svelte';
11
12 describe('Error Block component', () => {
13
14 test('Should display error message sent', () => {
15
16 const results = render(ErrorBlock, { props: {
17 message: 'An error has, sadly, destroyed everything.'
18 } });
19
20 expect(results.getByText('An error has, sadly, destroyed everything.'))
21 .toBeVisible();
22 });
23
24 test('Should display default error message', () => {
25
26 const results = render(ErrorBlock);
27
28 expect(results.getByText('Unknown error has occurred. Panic!'))
29 .toBeVisible();
30 });
31 });
32