Skip to content

Commit

Permalink
build: clear lint warnings regarding test import
Browse files Browse the repository at this point in the history
  • Loading branch information
dsanders11 committed Dec 6, 2024
1 parent 5232b60 commit 0d0e844
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion rtl-spec/components/commands-address-bar.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';

import { render } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { userEvent } from '@testing-library/user-event';
import { runInAction } from 'mobx';

import { GistActionState } from '../../src/interfaces';
Expand Down
2 changes: 1 addition & 1 deletion rtl-spec/components/commands-bisect.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react';

import { render } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { userEvent } from '@testing-library/user-event';
import { mocked } from 'jest-mock';

import { InstallState, VersionSource } from '../../src/interfaces';
Expand Down
2 changes: 1 addition & 1 deletion rtl-spec/components/commands-version-chooser.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react';

import { render, screen, waitFor } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { userEvent } from '@testing-library/user-event';

import { VersionChooser } from '../../src/renderer/components/commands-version-chooser';
import { AppState } from '../../src/renderer/state';
Expand Down
2 changes: 1 addition & 1 deletion rtl-spec/components/editors-non-ideal-state.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';

import { render } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { userEvent } from '@testing-library/user-event';

import { RenderNonIdealState } from '../../src/renderer/components/editors-non-ideal-state';
import { EditorMosaic } from '../../src/renderer/editor-mosaic';
Expand Down
2 changes: 1 addition & 1 deletion rtl-spec/components/editors-toolbar-button.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import userEvent from '@testing-library/user-event';
import { userEvent } from '@testing-library/user-event';
import { MosaicContext, MosaicWindowContext } from 'react-mosaic-component';

import { EditorId, MAIN_JS } from '../../src/interfaces';
Expand Down
2 changes: 1 addition & 1 deletion rtl-spec/components/tour-welcome.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react';

import { render } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { userEvent } from '@testing-library/user-event';

import {
WelcomeTour,
Expand Down
2 changes: 1 addition & 1 deletion rtl-spec/components/tour.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react';

import { render } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { userEvent } from '@testing-library/user-event';
import { mocked } from 'jest-mock';

import { Tour, TourScriptStep } from '../../src/renderer/components/tour';
Expand Down
2 changes: 1 addition & 1 deletion rtl-spec/components/version-select.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react';

import { render } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { userEvent } from '@testing-library/user-event';
import { mocked } from 'jest-mock';

import {
Expand Down

0 comments on commit 0d0e844

Please sign in to comment.