Skip to content

Commit

Permalink
feat(HeaderPanel): add tests (#13309)
Browse files Browse the repository at this point in the history
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
francinelucca and kodiakhq[bot] committed Mar 16, 2023
1 parent 77068e4 commit 5514c24
Showing 1 changed file with 67 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
/**
* Copyright IBM Corp. 2022
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/

import React from 'react';
import HeaderPanel from '../HeaderPanel';
import { render, screen } from '@testing-library/react';

describe('HeaderPanel', () => {
describe('renders as expected - Component API', () => {
it('should spread extra props onto outermost element', () => {
const { container } = render(
<HeaderPanel aria-label="aria-label" data-testid="test-id" />
);

expect(container.firstChild).toHaveAttribute('data-testid', 'test-id');
});

it('should respect aria-label prop', () => {
const { container } = render(<HeaderPanel aria-label="test-aria" />);

expect(container.firstChild).toHaveAttribute('aria-label', 'test-aria');
});

it('should respect aria-labelledby prop', () => {
const { container } = render(
<HeaderPanel aria-labelledby="test-aria-labelledby" />
);

expect(container.firstChild).toHaveAttribute(
'aria-labelledby',
'test-aria-labelledby'
);
});

it('should support a custom `className` prop on the outermost element', () => {
const { container } = render(
<HeaderPanel aria-label="test-aria" className="custom-class" />
);

expect(container.firstChild).toHaveClass('custom-class');
});

it('should respect expanded prop', () => {
const { container } = render(
<HeaderPanel aria-label="test-aria" expanded />
);

expect(container.firstChild).toHaveClass('cds--header-panel--expanded');
});

it('should render children as expected', () => {
render(
<HeaderPanel aria-label="test-aria">
<div className="child">Test</div>
<div className="child">Test</div>
</HeaderPanel>
);

const childrenArray = screen.getAllByText('Test');
expect(childrenArray.length).toEqual(2);
});
});
});

0 comments on commit 5514c24

Please sign in to comment.