Skip to content

Commit 8830902

Browse files
committedJun 25, 2021
[Tests] fix eslint < 7 not understanding import type
1 parent d57887c commit 8830902

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed
 

‎__mocks__/genInteractives.js

+2-5
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,8 @@
44

55
import { dom, roles } from 'aria-query';
66
import includes from 'array-includes';
7-
import JSXAttributeMock from './JSXAttributeMock';
8-
import JSXElementMock from './JSXElementMock';
9-
10-
import type { JSXElementMockType } from './JSXElementMock';
11-
import type { JSXAttributeMockType } from './JSXAttributeMock';
7+
import JSXAttributeMock, { JSXAttributeMockType } from './JSXAttributeMock';
8+
import JSXElementMock, { JSXElementMockType } from './JSXElementMock';
129

1310
const domElements = [...dom.keys()];
1411
const roleNames = [...roles.keys()];

0 commit comments

Comments
 (0)
Please sign in to comment.