aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/heading/heading.test.tsx
blob: 39b23ad9f7bce9d114aeded0e04d32da6f9c2d68 (plain)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import { describe, expect, it } from '@jest/globals';
import { render, screen as rtlScreen } from '@testing-library/react';
import { Heading } from './heading';

describe('Heading', () => {
  it('renders a h1', () => {
    const body = 'provident';

    render(<Heading level={1}>{body}</Heading>);

    expect(rtlScreen.getByRole('heading', { level: 1 })).toHaveTextContent(
      body
    );
  });

  it('renders a h2', () => {
    const body = 'iure';

    render(<Heading level={2}>{body}</Heading>);

    expect(rtlScreen.getByRole('heading', { level: 2 })).toHaveTextContent(
      body
    );
  });

  it('renders a h3', () => {
    const body = 'ut';

    render(<Heading level={3}>{body}</Heading>);

    expect(rtlScreen.getByRole('heading', { level: 3 })).toHaveTextContent(
      body
    );
  });

  it('renders a h4', () => {
    const body = 'dolor';

    render(<Heading level={4}>{body}</Heading>);

    expect(rtlScreen.getByRole('heading', { level: 4 })).toHaveTextContent(
      body
    );
  });

  it('renders a h5', () => {
    const body = 'temporibus';

    render(<Heading level={5}>{body}</Heading>);

    expect(rtlScreen.getByRole('heading', { level: 5 })).toHaveTextContent(
      body
    );
  });

  it('renders a h6', () => {
    const body = 'at';

    render(<Heading level={6}>{body}</Heading>);

    expect(rtlScreen.getByRole('heading', { level: 6 })).toHaveTextContent(
      body
    );
  });

  it('renders a fake heading', () => {
    const body = 'dignissimos';

    render(
      <Heading isFake level={2}>
        {body}
      </Heading>
    );

    expect(
      rtlScreen.queryByRole('heading', { level: 2 })
    ).not.toBeInTheDocument();
    expect(rtlScreen.getByText(body)).toHaveClass('heading--2');
  });
});