forked from riccardo-forina/use-patternfly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwitchWith404.test.tsx
40 lines (38 loc) · 1.34 KB
/
SwitchWith404.test.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import * as React from 'react';
import { Link, Route, Switch } from 'react-router-dom';
import { fireEvent } from '@testing-library/dom';
import { render } from '@test/setup';
import { SwitchWith404 } from '.';
describe('SwitchWith404 tests', () => {
test('should render the NotFound component for unmatched routes', async () => {
const { getByText } = render(
<SwitchWith404>
<Route path={'/foo'}>
<Link to={'/broken'}>Broken link</Link>
</Route>
</SwitchWith404>,
{ router: { initialEntries: ['/foo'], initialIndex: 0 } }
);
const brokenLink = getByText('Broken link');
fireEvent.click(brokenLink);
getByText("404! This view hasn't been created yet.");
});
test('should render the NotFound component for unmatched routes in nested routes', async () => {
const { getByText } = render(
<Switch>
<Route path={'/nested'}>
<SwitchWith404>
<Route path={'/nested/deep'}>
<Link to={'/nested/broken'}>Broken link</Link>
</Route>
</SwitchWith404>
</Route>
<Route>ttt</Route>
</Switch>,
{ router: { initialEntries: ['/nested/deep'], initialIndex: 0 } }
);
const brokenLink = getByText('Broken link');
fireEvent.click(brokenLink);
getByText("404! This view hasn't been created yet.");
});
});