diff --git a/__tests__/pages/dashboard.test.tsx b/__tests__/pages/dashboard.test.tsx index 5e9bc17..241ef0a 100644 --- a/__tests__/pages/dashboard.test.tsx +++ b/__tests__/pages/dashboard.test.tsx @@ -1,5 +1,5 @@ import Dashboard from '../../src/pages/dashboard'; -import { render, screen, fireEvent, waitFor, act } from '@testing-library/react'; +import { render, screen, fireEvent, act } from '@testing-library/react'; describe.only('Dashboard Component', () => { const mockWriteText = jest.fn(); diff --git a/__tests__/utils/shortenUrl.test.ts b/__tests__/utils/shortenUrl.test.ts index 100c157..5b908d3 100644 --- a/__tests__/utils/shortenUrl.test.ts +++ b/__tests__/utils/shortenUrl.test.ts @@ -1,7 +1,7 @@ import { UserTypes } from '@/types/user.types'; import { userData } from '../../fixtures/users'; import { TINY_API_URL } from '@/constants/url'; -import shortenUrl from '../../src/utils/ShortenUrl'; +import shortenUrl from '@/utils/ShortenUrl'; describe('shortenUrl', () => { beforeEach(() => {