Skip to content

Commit

Permalink
fix: fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
amje committed Feb 6, 2024
1 parent df4aa17 commit 6b99075
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ describe('DelayedTextInput', () => {
/>,
);

// eslint-disable-next-line testing-library/no-node-access
const [textInput] = screen.getByTestId(qaAttribute).getElementsByTagName('input');

expect(textInput).toBeVisible();
Expand All @@ -41,7 +40,6 @@ describe('DelayedTextInput', () => {
/>,
);

// eslint-disable-next-line testing-library/no-node-access
const [textInput] = screen.getByTestId(qaAttribute).getElementsByTagName('input');

fireEvent.change(textInput, {target: {value: finalSearchTerm.slice(0, 5)}});
Expand Down Expand Up @@ -70,7 +68,6 @@ describe('DelayedTextInput', () => {
/>,
);

// eslint-disable-next-line testing-library/no-node-access
const [textInput] = screen.getByTestId(qaAttribute).getElementsByTagName('input');
expect(textInput).toHaveValue(finalSearchTerm);

Expand Down

0 comments on commit 6b99075

Please sign in to comment.