We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b3f875 commit 7a43089Copy full SHA for 7a43089
worker/index.worker.test.ts
@@ -43,13 +43,6 @@ describe("Cloudflare Docs", () => {
43
expect(response.headers.get("Location")).toBe("/products/");
44
});
45
46
- it("redirects /changelog/index.xml to /release-notes/index.xml", async () => {
47
- const request = new Request("http://fakehost/changelog/index.xml");
48
- const response = await SELF.fetch(request, { redirect: "manual" });
49
- expect(response.status).toBe(301);
50
- expect(response.headers.get("Location")).toBe("/release-notes/index.xml");
51
- });
52
-
53
it("redirects /changelog-next/ to /changelog/", async () => {
54
const request = new Request("http://fakehost/changelog-next/");
55
const response = await SELF.fetch(request, { redirect: "manual" });
0 commit comments