-
Notifications
You must be signed in to change notification settings - Fork 0
[Bug] Prevent The App From Crashing When Unauthenticated (SC-177722) #62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
AFOJ
merged 7 commits into
main
from
bug/sc-177722/-click-up-prevent-app-crash-on-login-page-due-to
Jul 23, 2025
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
ce6f50c
[Chore] Introduce `Result` type
AFOJ 93fa86b
[Chore] Remove auth hotfix from `ReplyBoxProvider`
AFOJ f3e31ad
[Bug] Prevent the app from crashing when on the login page (SC-177722)
AFOJ be54d79
[Refactor] Improve error message handling
AFOJ 0daf483
[Chore] Remove unused `get` import
AFOJ d009d72
[Chore] Remove unnecessary log in `useTasks`
AFOJ b4b10bd
[Chore] Remove commented code in `getTaskService`
AFOJ File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,43 +1,58 @@ | ||
| import { cleanup } from "@testing-library/react"; | ||
| import { cleanup, screen, waitFor } from "@testing-library/react"; | ||
| import { render } from "../../../../testing"; | ||
| import { getWorkspacesService } from "../../../services/clickUp"; | ||
| import { TaskForm } from "../TaskForm"; | ||
| import { useFormDeps } from "../hooks"; | ||
|
|
||
|
|
||
| jest.mock("../../../services/clickUp/getWorkspacesService"); | ||
| jest.mock("../hooks"); | ||
|
|
||
| describe("LinkTasks", () => { | ||
| const mockFormDeps = { | ||
| isLoading: false, | ||
| workspaceOptions: [], | ||
| spaceOptions: [], | ||
| listOptions: [], | ||
| statusOptions: [], | ||
| userOptions: [], | ||
| tagOptions: [] | ||
| } | ||
|
|
||
| beforeEach(() => { | ||
| (useFormDeps as jest.Mock).mockReturnValue(mockFormDeps) | ||
| }) | ||
|
|
||
| afterEach(() => { | ||
| jest.clearAllMocks(); | ||
| cleanup(); | ||
| }); | ||
| jest.clearAllMocks() | ||
| cleanup() | ||
| }) | ||
|
|
||
| test("render", async () => { | ||
| (getWorkspacesService as jest.Mock).mockResolvedValue([]); | ||
|
|
||
| const { findByText } = render(( | ||
| <TaskForm onSubmit={jest.fn()} onCancel={jest.fn()} /> | ||
| ), { wrappers: { theme: true, query: true } }); | ||
|
|
||
| expect(await findByText("Workspace")).toBeInTheDocument(); | ||
| expect(await findByText("Space")).toBeInTheDocument(); | ||
| expect(await findByText("List")).toBeInTheDocument(); | ||
| expect(await findByText("Task name")).toBeInTheDocument(); | ||
| expect(await findByText("Description")).toBeInTheDocument(); | ||
| expect(await findByText("Status")).toBeInTheDocument(); | ||
| expect(await findByText("Assignees")).toBeInTheDocument(); | ||
| expect(await findByText("Due date")).toBeInTheDocument(); | ||
| expect(await findByText("Tags")).toBeInTheDocument(); | ||
|
|
||
| expect(await findByText("Create")).toBeVisible(); | ||
| expect(await findByText("Cancel")).toBeVisible(); | ||
| }); | ||
|
|
||
| test("render error", () => { | ||
| const { queryByText } = render(( | ||
| <TaskForm onSubmit={jest.fn()} error="some error" /> | ||
| ), { wrappers: { theme: true, query: true } }); | ||
|
|
||
| expect(queryByText("some error")).toBeInTheDocument(); | ||
| }); | ||
| }); | ||
| render( | ||
| <TaskForm onSubmit={jest.fn()} onCancel={jest.fn()} />, | ||
| { wrappers: { theme: true, query: true } } | ||
| ); | ||
|
|
||
| await waitFor(() => { | ||
| expect(screen.getByText("Workspace")).toBeInTheDocument() | ||
| expect(screen.getByText("Space")).toBeInTheDocument() | ||
| expect(screen.getByText("List")).toBeInTheDocument() | ||
| expect(screen.getByText("Task name")).toBeInTheDocument() | ||
| expect(screen.getByText("Description")).toBeInTheDocument() | ||
| expect(screen.getByText("Status")).toBeInTheDocument() | ||
| expect(screen.getByText("Assignees")).toBeInTheDocument() | ||
| expect(screen.getByText("Due date")).toBeInTheDocument() | ||
| expect(screen.getByText("Tags")).toBeInTheDocument() | ||
| }) | ||
|
|
||
| expect(screen.getByText("Create")).toBeVisible() | ||
| expect(screen.getByText("Cancel")).toBeVisible() | ||
| }) | ||
|
|
||
| test("render error", async () => { | ||
| render( | ||
| <TaskForm onSubmit={jest.fn()} error="some error" />, | ||
| { wrappers: { theme: true, query: true } } | ||
| ) | ||
|
|
||
| expect(await screen.findByText("some error")).toBeInTheDocument(); | ||
| }) | ||
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.