Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions apps/website/src/content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@ export const FOOTER = {
promptUser: "roberto@thesolidchain:~$",
promptRest: "a product of The Solid Chain",
family: [
{ label: "reCode </>", href: "#" },
{ label: "reDeploy ^^", current: true },
{ label: "reDeFi <=>", href: "#" },
{ label: "reCode </>", href: "https://recode.thesolidchain.com" },
{ label: "reDeploy ^^", current: true, href: "https://redeploy.thesolidchain.com" },
{ label: "reDeFi <=>", href: "https://redefi.thesolidchain.com" },
] as FamilyLink[],
};
10 changes: 8 additions & 2 deletions apps/website/test/App.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,14 @@ describe("App", () => {

expect(screen.getByText("roberto@thesolidchain:~$")).toBeInTheDocument();
expect(screen.getByText("reDeploy ^^")).toBeInTheDocument();
expect(screen.getByRole("link", { name: "reCode </>" })).toHaveAttribute("href", "#");
expect(screen.getByRole("link", { name: "reDeFi <=>" })).toHaveAttribute("href", "#");
expect(screen.getByRole("link", { name: "reCode </>" })).toHaveAttribute(
"href",
"https://recode.thesolidchain.com",
);
expect(screen.getByRole("link", { name: "reDeFi <=>" })).toHaveAttribute(
"href",
"https://redefi.thesolidchain.com",
);
});

it("links to the real GitHub repo from the topbar", () => {
Expand Down
Loading