Skip to content

Commit b83400c

Browse files
authored
Merge pull request #158 from brunomous/feature/crud-title-test
Adjust test for Avatar and Crud Module
2 parents 8c662e3 + a312b3d commit b83400c

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

packages/react-material-ui/__tests__/Avatar.spec.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import '@testing-library/jest-dom';
66
import React from 'react';
77
import { render, fireEvent } from '@testing-library/react';
8-
import Avatar from '../src/components/Avatar/Avatar';
8+
import { Avatar } from '../src/components/Avatar/Avatar';
99

1010
describe('Avatar Component', () => {
1111
const props = {

packages/react-material-ui/__tests__/CrudModule.spec.tsx

+4-3
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,11 @@ describe('CrudModule Component', () => {
110110
});
111111

112112
it('should render title correctly', () => {
113-
const { getByText } = render(<CrudModule {...props} />);
113+
const { getAllByText } = render(<CrudModule {...props} />);
114114

115-
const title = getByText('Test title');
116-
expect(title).toBeInTheDocument();
115+
// title will be rendered twice as it also appears in the page breadcrumbs
116+
const titleElements = getAllByText('Test title');
117+
expect(titleElements).toHaveLength(2);
117118
});
118119

119120
it('formContainerVariation displays the form in a Drawer according to its value', async () => {

0 commit comments

Comments
 (0)