refactor: route console lifecycle workspace

This commit is contained in:
lda
2026-08-04 23:14:31 +07:00 Verified
parent 7f01bd1915
commit f14d9f1278
22 changed files with 813 additions and 1487 deletions
@@ -53,10 +53,12 @@ describe("ConsoleShell", () => {
{ label: "Artifacts", href: "/console/artifacts" },
{ label: "Deployments", href: "/console/deployments" },
{ label: "Runs", href: "/console/runs" },
{ label: "Results", href: "/console/results" },
]) {
expect(screen.getByRole("link", { name: label })).toHaveAttribute("href", href);
}
expect(screen.getByText("Results")).toBeInTheDocument();
expect(screen.getByText("Later")).toBeInTheDocument();
expect(screen.queryByRole("link", { name: "Results" })).toBeNull();
});
it("provides a keyboard skip link to the workspace main region", async () => {