Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Oct 18, 2020
1 parent d6db348 commit 96a92a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/grid/data-grid/src/DataGrid.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable react/forbid-foreign-prop-types */
import * as React from 'react';
import PropTypes from 'prop-types';
// @ts-expect-error need to migrate helpers to TypeScript
Expand Down
2 changes: 2 additions & 0 deletions packages/grid/x-grid/src/XGrid.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ describe('<XGrid />', () => {
});

describe('keyboard', () => {
/* eslint-disable material-ui/disallow-active-element-as-key-event-target */
const KeyboardTest = () => {
const data = useData(100, 20);
const transformColSizes = (columns) => columns.map((column) => ({ ...column, width: 60 }));
Expand Down Expand Up @@ -153,6 +154,7 @@ describe('<XGrid />', () => {
await raf();
expect(getActiveCell()).to.equal('1-19');
});
/* eslint-enable material-ui/disallow-active-element-as-key-event-target */
});

it('should resize the width of the columns', async () => {
Expand Down

0 comments on commit 96a92a0

Please sign in to comment.