Skip to content

Commit

Permalink
[Tests] fix eslint < 7 not understanding import type
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Jun 25, 2021
1 parent d57887c commit 8830902
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions __mocks__/genInteractives.js
Expand Up @@ -4,11 +4,8 @@

import { dom, roles } from 'aria-query';
import includes from 'array-includes';
import JSXAttributeMock from './JSXAttributeMock';
import JSXElementMock from './JSXElementMock';

import type { JSXElementMockType } from './JSXElementMock';
import type { JSXAttributeMockType } from './JSXAttributeMock';
import JSXAttributeMock, { JSXAttributeMockType } from './JSXAttributeMock';
import JSXElementMock, { JSXElementMockType } from './JSXElementMock';

const domElements = [...dom.keys()];
const roleNames = [...roles.keys()];
Expand Down

0 comments on commit 8830902

Please sign in to comment.