Skip to content

Commit

Permalink
test(useAuthorization.test.tsx): remove duplicate imports of render a…
Browse files Browse the repository at this point in the history
…nd screen from @testing-library/react

The duplicate imports of render and screen from @testing-library/react have been removed to improve code readability and maintainability.
  • Loading branch information
ktun95 committed Aug 21, 2024
1 parent 1b245cc commit 0592bd0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/auth/src/__tests__/useAuthorization.test.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { test, expect, vi } from "vitest"
import { render, screen } from "@testing-library/react"
import { useAuthorization } from "../useAuthorization"
import { render, screen } from "@testing-library/react"
import { useAuthorization } from "../useAuthorization"

const mockUseLogto = vi.hoisted(() => vi.fn())

Expand Down

0 comments on commit 0592bd0

Please sign in to comment.