forked from riccardo-forina/use-patternfly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppNavExpandable.test.tsx
34 lines (29 loc) · 1.04 KB
/
AppNavExpandable.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
import * as React from 'react';
import { Link } from 'react-router-dom';
import { render, fireEvent } from '@test/setup';
import { AppNavExpandable } from '.';
describe('AppNavExpandable tests', () => {
test('should render', async () => {
const { getByText, getByTestId } = render(
<div>
<AppNavExpandable
title={'Group title'}
to={'/group'}
items={[
{ to: '/group/foo', title: 'foo' },
{ to: '/group/bar', title: 'bar' },
]}
/>
<Link to={'/group/foo'} data-testid={'go-to-foo'}>
Go to foo
</Link>
</div>
);
const groupTitle = getByText('Group title');
expect(getByText('foo').closest('a')).toHaveAttribute('href', '/group/foo');
expect(getByText('bar').closest('a')).toHaveAttribute('href', '/group/bar');
expect(groupTitle.closest('a')).toHaveAttribute('aria-expanded', 'false');
fireEvent.click(getByTestId('go-to-foo'));
expect(groupTitle.closest('a')).toHaveAttribute('aria-expanded', 'true');
});
});