Skip to content

Commit

Permalink
remove unnecessary describeConformance tests for skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
ximex committed Jan 15, 2020
1 parent c73f3be commit c4547fd
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions packages/material-ui-lab/src/Skeleton/Skeleton.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,27 +26,6 @@ describe('<Skeleton />', () => {
refInstanceof: window.HTMLSpanElement,
}));

describeConformance(<Skeleton variant="text" />, () => ({
classes,
inheritComponent: 'span',
mount,
refInstanceof: window.HTMLSpanElement,
}));

describeConformance(<Skeleton variant="rect" />, () => ({
classes,
inheritComponent: 'div',
mount,
refInstanceof: window.HTMLDivElement,
}));

describeConformance(<Skeleton variant="circle" />, () => ({
classes,
inheritComponent: 'div',
mount,
refInstanceof: window.HTMLDivElement,
}));

it('should render', () => {
const { container } = render(<Skeleton />);

Expand Down

0 comments on commit c4547fd

Please sign in to comment.