rename tape to options and switch the web shell to a drawer
This commit is contained in:
parent
f056f6d2b8
commit
7ca0e05a2d
10 changed files with 916 additions and 154 deletions
|
|
@ -28,4 +28,10 @@ describe("legacy page redirects", () => {
|
|||
expect(() => mod.default()).toThrow("NEXT_REDIRECT:/");
|
||||
expect(redirect).toHaveBeenCalledWith("/");
|
||||
});
|
||||
|
||||
it("redirects /tape to /options", async () => {
|
||||
const mod = await import("./tape/page");
|
||||
expect(() => mod.default()).toThrow("NEXT_REDIRECT:/options");
|
||||
expect(redirect).toHaveBeenCalledWith("/options");
|
||||
});
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue