Skip to content

Commit

Permalink
remove unnecessary imports
Browse files Browse the repository at this point in the history
  • Loading branch information
sirbully committed Jul 6, 2024
1 parent 8bf43ae commit 374045e
Show file tree
Hide file tree
Showing 10 changed files with 2 additions and 10 deletions.
1 change: 0 additions & 1 deletion src/components/Footer/__test__/Footer.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { describe, expect, it } from 'vitest'
import { render } from '@/tests/customRender'
import { screen } from '@testing-library/react'
import Footer from '../Footer'
Expand Down
1 change: 0 additions & 1 deletion src/components/Footer/__test__/FooterIcon.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { describe, expect, it } from 'vitest'
import { render } from '@/tests/customRender'
import { screen } from '@testing-library/react'
import FooterIcon from '../FooterIcon'
Expand Down
1 change: 0 additions & 1 deletion src/components/Header/__test__/DesktopToolbar.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { describe, expect, it } from 'vitest'
import { render } from '@/tests/customRender'
import { screen } from '@testing-library/react'
import DesktopHeader from '../DesktopHeader'
Expand Down
2 changes: 1 addition & 1 deletion src/components/Header/__test__/Header.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { describe, expect, it, Mock } from 'vitest';
import { Mock } from 'vitest';
import useMediaQuery from '@mui/material/useMediaQuery';
import { screen } from '@testing-library/react';
import { render } from '@/tests/customRender';
Expand Down
1 change: 0 additions & 1 deletion src/components/Header/__test__/MobileHeader.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { describe, expect, it } from 'vitest'
import { render } from '@/tests/customRender'
import { screen } from '@testing-library/react'
import MobileHeader from '../MobileHeader'
Expand Down
2 changes: 1 addition & 1 deletion src/components/LocaleToggle/__test__/LocaleToggle.test.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useTranslation } from 'react-i18next';
import { screen } from '@testing-library/react';
import { Mock } from 'vitest';
import { useTranslation } from 'react-i18next';

import { render } from '@/tests/customRender';
import LocaleToggle from '../LocaleToggle';
Expand Down
1 change: 0 additions & 1 deletion src/routes/Home/__test__/Home.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { describe, expect, it } from 'vitest'
import { render } from '@/tests/customRender'
import { screen } from '@testing-library/react'
import Home from '../Home'
Expand Down
1 change: 0 additions & 1 deletion src/routes/NotFound/__test__/NotFound.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { describe, expect, it } from 'vitest'
import { render } from '@/tests/customRender'
import { screen } from '@testing-library/react'
import NotFound from '../NotFound'
Expand Down
1 change: 0 additions & 1 deletion src/routes/ThemePreview/__test__/ColorSwatch.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { describe, expect, it } from 'vitest'
import { render } from '@/tests/customRender'
import { screen } from '@testing-library/react'
import ColorSwatch from '../ColorSwatch'
Expand Down
1 change: 0 additions & 1 deletion src/routes/ThemePreview/__test__/ThemePreview.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { describe, expect, it } from 'vitest'
import { render } from '@/tests/customRender'
import { screen } from '@testing-library/react'
import ThemePreview from '../ThemePreview'
Expand Down

0 comments on commit 374045e

Please sign in to comment.