-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathindex.test.jsx
More file actions
52 lines (44 loc) · 1.15 KB
/
index.test.jsx
File metadata and controls
52 lines (44 loc) · 1.15 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
import { describe, it } from 'node:test';
import assert from 'node:assert/strict';
import { render, screen } from '@testing-library/react';
import ActiveLink from '..';
describe('ActiveLink', () => {
it('renders as localized link', async () => {
render(
<ActiveLink className="link" activeClassName="active" href="/link">
Link
</ActiveLink>
);
assert.equal(
(await screen.findByText('Link')).getAttribute('href'),
'/link'
);
});
it('ignores active class when href not matches location.href', async () => {
render(
<ActiveLink className="link" activeClassName="active" href="/not-link">
Link
</ActiveLink>
);
assert.equal(
(await screen.findByText('Link')).getAttribute('class'),
'link'
);
});
it('sets active class when href matches location.href', async () => {
render(
<ActiveLink
className="link"
activeClassName="active"
href="/link"
pathname="/link"
>
Link
</ActiveLink>
);
assert.equal(
(await screen.findByText('Link')).getAttribute('class'),
'link active'
);
});
});