diff --git a/tests/components/list/ListItem.test.tsx b/tests/components/common/list/ListItem.test.tsx similarity index 100% rename from tests/components/list/ListItem.test.tsx rename to tests/components/common/list/ListItem.test.tsx diff --git a/tests/components/list/ListItemButton.test.tsx b/tests/components/common/list/ListItemButton.test.tsx similarity index 100% rename from tests/components/list/ListItemButton.test.tsx rename to tests/components/common/list/ListItemButton.test.tsx diff --git a/tests/components/list/ListItemRow.test.tsx b/tests/components/common/list/ListItemRow.test.tsx similarity index 100% rename from tests/components/list/ListItemRow.test.tsx rename to tests/components/common/list/ListItemRow.test.tsx diff --git a/tests/components/progress/progressView.test.tsx b/tests/components/common/progress/Progress.test.tsx similarity index 100% rename from tests/components/progress/progressView.test.tsx rename to tests/components/common/progress/Progress.test.tsx diff --git a/tests/unit/dashboard/dashboard.test.tsx b/tests/components/features/dashboard/DashboardPage.test.tsx similarity index 100% rename from tests/unit/dashboard/dashboard.test.tsx rename to tests/components/features/dashboard/DashboardPage.test.tsx diff --git a/tests/unit/goals/goals.test.tsx b/tests/components/features/goals/GoalsPage.test.tsx similarity index 100% rename from tests/unit/goals/goals.test.tsx rename to tests/components/features/goals/GoalsPage.test.tsx diff --git a/tests/components/navigation/navigationLogout.test.tsx b/tests/components/features/navigation/navigationLogout.test.tsx similarity index 100% rename from tests/components/navigation/navigationLogout.test.tsx rename to tests/components/features/navigation/navigationLogout.test.tsx diff --git a/tests/components/notes/NoteCreateContainer.test.tsx b/tests/components/features/notes/NoteCreateContainer.test.tsx similarity index 100% rename from tests/components/notes/NoteCreateContainer.test.tsx rename to tests/components/features/notes/NoteCreateContainer.test.tsx diff --git a/tests/components/notes/NoteDetailContent.test.tsx b/tests/components/features/notes/NoteDetailContent.test.tsx similarity index 100% rename from tests/components/notes/NoteDetailContent.test.tsx rename to tests/components/features/notes/NoteDetailContent.test.tsx diff --git a/tests/components/notes/NoteEditContainer.test.tsx b/tests/components/features/notes/NoteEditContainer.test.tsx similarity index 100% rename from tests/components/notes/NoteEditContainer.test.tsx rename to tests/components/features/notes/NoteEditContainer.test.tsx diff --git a/tests/components/notes/NoteList.test.tsx b/tests/components/features/notes/NoteList.test.tsx similarity index 100% rename from tests/components/notes/NoteList.test.tsx rename to tests/components/features/notes/NoteList.test.tsx diff --git a/tests/components/notes/NoteListContainer.test.tsx b/tests/components/features/notes/NoteListContainer.test.tsx similarity index 100% rename from tests/components/notes/NoteListContainer.test.tsx rename to tests/components/features/notes/NoteListContainer.test.tsx diff --git a/tests/components/todos/todoFormFile.test.tsx b/tests/components/features/todos/AttachmentSection.test.tsx similarity index 100% rename from tests/components/todos/todoFormFile.test.tsx rename to tests/components/features/todos/AttachmentSection.test.tsx diff --git a/tests/components/todos/todoFormModal.test.tsx b/tests/components/features/todos/TodoFormContent.test.tsx similarity index 100% rename from tests/components/todos/todoFormModal.test.tsx rename to tests/components/features/todos/TodoFormContent.test.tsx diff --git a/tests/components/todos/todos.test.tsx b/tests/components/features/todos/TodosPage.test.tsx similarity index 100% rename from tests/components/todos/todos.test.tsx rename to tests/components/features/todos/TodosPage.test.tsx diff --git a/tests/unit/auth/useLogout.test.tsx b/tests/hooks/auth/useLogout.test.tsx similarity index 100% rename from tests/unit/auth/useLogout.test.tsx rename to tests/hooks/auth/useLogout.test.tsx diff --git a/tests/unit/utils/validation/validateEmail.test.ts b/tests/utils/validation/validateEmail.test.ts similarity index 91% rename from tests/unit/utils/validation/validateEmail.test.ts rename to tests/utils/validation/validateEmail.test.ts index 39bda34..a85423d 100644 --- a/tests/unit/utils/validation/validateEmail.test.ts +++ b/tests/utils/validation/validateEmail.test.ts @@ -1,4 +1,4 @@ -import { validateEmail } from "../../../../src/utils/validation/fields/validateEmail"; +import { validateEmail } from "@/utils/validation/fields/validateEmail"; describe("이메일 유효성 검사", () => { it("이메일이 비어 있으면 에러 메시지를 반환한다", () => { diff --git a/tests/unit/utils/validation/validateLogin.test.ts b/tests/utils/validation/validateLogin.test.ts similarity index 90% rename from tests/unit/utils/validation/validateLogin.test.ts rename to tests/utils/validation/validateLogin.test.ts index 225d33f..4c0e89d 100644 --- a/tests/unit/utils/validation/validateLogin.test.ts +++ b/tests/utils/validation/validateLogin.test.ts @@ -1,5 +1,5 @@ -import { LoginFormValues } from "../../../../src/types/authForm"; -import { validateLogin } from "../../../../src/utils/validation/forms/validateLogin"; +import { LoginFormValues } from "@/types/authForm"; +import { validateLogin } from "@/utils/validation/forms/validateLogin"; const createValues = ( override: Partial = {}, diff --git a/tests/unit/utils/validation/validateName.test.ts b/tests/utils/validation/validateName.test.ts similarity index 92% rename from tests/unit/utils/validation/validateName.test.ts rename to tests/utils/validation/validateName.test.ts index c43aea5..f995fc9 100644 --- a/tests/unit/utils/validation/validateName.test.ts +++ b/tests/utils/validation/validateName.test.ts @@ -1,4 +1,4 @@ -import { validateName } from "../../../../src/utils/validation/fields/validateName"; +import { validateName } from "@/utils/validation/fields/validateName"; describe("이름 유효성 검사", () => { it("비어 있으면 에러 메시지를 반환한다", () => { diff --git a/tests/unit/utils/validation/validatePassword.test.ts b/tests/utils/validation/validatePassword.test.ts similarity index 93% rename from tests/unit/utils/validation/validatePassword.test.ts rename to tests/utils/validation/validatePassword.test.ts index 6a79d4b..1cf193b 100644 --- a/tests/unit/utils/validation/validatePassword.test.ts +++ b/tests/utils/validation/validatePassword.test.ts @@ -1,4 +1,4 @@ -import { validatePassword } from "../../../../src/utils/validation/fields/validatePassword"; +import { validatePassword } from "../../../src/utils/validation/fields/validatePassword"; describe("비밀번호 유효성 검사", () => { it("비어 있으면 에러 메시지를 반환한다", () => { diff --git a/tests/unit/utils/validation/validateSignup.test.ts b/tests/utils/validation/validateSignup.test.ts similarity index 92% rename from tests/unit/utils/validation/validateSignup.test.ts rename to tests/utils/validation/validateSignup.test.ts index c57b9d4..ae79f97 100644 --- a/tests/unit/utils/validation/validateSignup.test.ts +++ b/tests/utils/validation/validateSignup.test.ts @@ -1,5 +1,5 @@ -import { SignupFormValues } from "../../../../src/types/authForm"; -import { validateSignup } from "../../../../src/utils/validation/forms/validateSignup"; +import { SignupFormValues } from "@/types/authForm"; +import { validateSignup } from "@/utils/validation/forms/validateSignup"; const createValues = ( override: Partial = {},