Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
krzotki committed Jul 5, 2024
1 parent 768d697 commit adbfe17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/accordion/Accordion.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import * as React from 'react';
import Accordion from './Accordion';
import AccordionItem from './AccordionItem';
import {render, fireEvent, waitFor, screen} from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import {testA11y} from '../../axe';

describe('<Accordion>', () => {
Expand Down Expand Up @@ -215,6 +214,7 @@ describe('<Accordion>', () => {

it('expands and collapses item on Enter/Space keydown when motion is reduced', async () => {
const accordionId = 'id-1';

render(
<Accordion reduceMotion>
<AccordionItem title={accordionId} id={accordionId} tabIndex={1}>
Expand Down

0 comments on commit adbfe17

Please sign in to comment.