]>
Commit | Line | Data |
---|---|---|
1 | import '@testing-library/jest-dom/extend-expect'; | |
2 | ||
3 | import { render } from '@testing-library/svelte'; | |
4 | import '$/config/i18n'; | |
5 | ||
6 | import ErrorBlock from './error_block.svelte'; | |
7 | ||
8 | describe('Error Block component', () => { | |
9 | ||
10 | test('Should display error message sent', () => { | |
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 | test('Should display default error message', () => { | |
21 | ||
22 | const results = render(ErrorBlock); | |
23 | ||
24 | expect(results.getByText('Unknown error has occurred. Panic!')) | |
25 | .toBeVisible(); | |
26 | }); | |
27 | }); | |
28 |