From 4343aadf24428045d8c5beb6c7ea238f0eaae744 Mon Sep 17 00:00:00 2001 From: sanjibani <18418553+sanjibani@users.noreply.github.com> Date: Mon, 22 Jun 2026 13:39:41 +0530 Subject: [PATCH] docs(1.x/examples/writing-tests): fix dead deno.land/x/fresh doc links MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `https://deno.land/x/fresh/server.ts?doc=&s=createHandler` (404) and `https://deno.land/x/fresh/server.ts?s=FreshConfig` (404) — the `deno.land/x/*` docs URL pattern was retired when Deno moved module documentation to JSR. Replaced both with the canonical JSR module page: `https://jsr.io/@fresh/core` (200). --- docs/1.x/examples/writing-tests.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/1.x/examples/writing-tests.md b/docs/1.x/examples/writing-tests.md index e25bffaca0a..08e03e47c8f 100644 --- a/docs/1.x/examples/writing-tests.md +++ b/docs/1.x/examples/writing-tests.md @@ -5,7 +5,7 @@ description: | You can write tests for your Fresh project by creating an application handler through -[`createHandler()`](https://deno.land/x/fresh/server.ts?doc=&s=createHandler). +[`createHandler()`](https://jsr.io/@fresh/core/doc). ## 1. Create your routes @@ -104,7 +104,7 @@ export async function createHandler( When you're using it, you'll likely be importing the manifest from your project. You can of course import the config (`fresh.config.ts`) as well, but you're also free to provide your own bag of options. -[`FreshConfig`](https://deno.land/x/fresh/server.ts?s=FreshConfig) is declared +[`FreshConfig`](https://jsr.io/@fresh/core) is declared as follows: ```ts fresh 🍋