Restore frontend.

Will probably replace existing website with this one.
This commit is contained in:
Sam
2024-12-31 15:33:46 +10:00
parent 08d9dd1125
commit 203b069521
81 changed files with 15544 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { screen } from "@testing-library/dom";
import { render } from "@testing-library/react";
import { describe, expect, it } from "vitest";
import Page from "@/app/page";
describe("Page", () => {
it("should show button to view scripts", () => {
render(<Page />);
expect(screen.getByRole("button", { name: "View Scripts" })).toBeDefined();
});
});