diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-03-06 02:16:59 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-03-06 02:16:59 +0900 |
| commit | 27f509ccf4fbfeaa1bc2580ae2251461dc44ebfa (patch) | |
| tree | 2f8adbbad7af59af35ec428e029863eb0941c397 /frontend/app/pages/SubmissionsPage.test.tsx | |
| parent | 1fae954b09a49d93a1361788e859065bea43f0c0 (diff) | |
| download | phperkaigi-2026-albatross-27f509ccf4fbfeaa1bc2580ae2251461dc44ebfa.tar.gz phperkaigi-2026-albatross-27f509ccf4fbfeaa1bc2580ae2251461dc44ebfa.tar.zst phperkaigi-2026-albatross-27f509ccf4fbfeaa1bc2580ae2251461dc44ebfa.zip | |
feat(frontend): remove standalone submissions page
Submission history is now shown inline on the play screen,
making the dedicated /golf/:gameId/submissions page redundant.
Diffstat (limited to 'frontend/app/pages/SubmissionsPage.test.tsx')
| -rw-r--r-- | frontend/app/pages/SubmissionsPage.test.tsx | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/frontend/app/pages/SubmissionsPage.test.tsx b/frontend/app/pages/SubmissionsPage.test.tsx deleted file mode 100644 index f01f4c9..0000000 --- a/frontend/app/pages/SubmissionsPage.test.tsx +++ /dev/null @@ -1,17 +0,0 @@ -/** - * @vitest-environment jsdom - */ -import { cleanup, render, screen } from "@testing-library/react"; -import { afterEach, describe, expect, test } from "vitest"; -import SubmissionsPage from "./SubmissionsPage"; - -afterEach(() => { - cleanup(); -}); - -describe("SubmissionsPage", () => { - test("shows loading state initially", () => { - render(<SubmissionsPage gameId="1" />); - expect(screen.getByText("Loading...")).toBeDefined(); - }); -}); |
