Skip to content

Commit

Permalink
remove unnecessary test
Browse files Browse the repository at this point in the history
  • Loading branch information
cherniavskii committed Nov 21, 2024
1 parent 41b9eaa commit 0f64f9c
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions packages/x-data-grid/src/tests/rows.DataGrid.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -742,19 +742,6 @@ describe('<DataGrid /> - Rows', () => {
expect(getRow(2)).toHaveInlineStyle({ minHeight: '100px' });
});

it('should not virtualize columns if a row has auto height', () => {
render(
<TestCase
rows={baselineProps.rows.slice(0, 1)}
getBioContentHeight={() => 100}
getRowHeight={() => 'auto'}
columnBufferPx={0}
width={100}
/>,
);
expect($$(`.${gridClasses.cell}:not(.${gridClasses.cellEmpty})`)).to.have.length(2);
});

it('should measure rows while scrolling', async () => {
const columnHeaderHeight = 50;
const border = 1;
Expand Down

0 comments on commit 0f64f9c

Please sign in to comment.