Skip to content

Commit

Permalink
Remove .only (#784)
Browse files Browse the repository at this point in the history
  • Loading branch information
klassm committed Aug 17, 2023
1 parent 9df9507 commit 7202d8c
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions __tests__/localization.test.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
import * as React from 'react';
import {
act,
screen,
render,
waitForElementToBeRemoved,
within,
waitFor,
fireEvent
} from '@testing-library/react';
import { screen, render } from '@testing-library/react';
import MaterialTable from '../src';

const lookup = { 1: 'One', 2: 'Two' };
Expand All @@ -19,7 +11,7 @@ const columns = [

const data = [{ id: 1, enum: 1 }];

describe.only('Localization', () => {
describe('Localization', () => {
test('Renders the pagination', () => {
render(
<MaterialTable
Expand Down

0 comments on commit 7202d8c

Please sign in to comment.