- Galaxy
- Cross-platform UI client — workspace skeleton.
+
+ {i18n.t("common.loading")}
-
-
diff --git a/ui/frontend/tests/landing.test.ts b/ui/frontend/tests/landing.test.ts
deleted file mode 100644
index 2e7ffe3..0000000
--- a/ui/frontend/tests/landing.test.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { render } from "@testing-library/svelte";
-import { describe, expect, it } from "vitest";
-import Page from "../src/routes/+page.svelte";
-
-describe("landing page", () => {
- it("renders a non-empty version string in the footer", () => {
- const { getByTestId } = render(Page);
- const footer = getByTestId("app-version");
- expect(footer).toBeInTheDocument();
- expect(footer.textContent?.trim()).not.toBe("");
- expect(footer.textContent).toMatch(/version\s+\S+/);
- });
-});