From 74d68a137707b9ed0bfc93a0789ddf7167b625ea Mon Sep 17 00:00:00 2001 From: Jo Franchetti Date: Mon, 25 Nov 2024 17:44:40 +0000 Subject: [PATCH] fix test --- learn/_pages/examples_test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/_pages/examples_test.ts b/learn/_pages/examples_test.ts index 2868fedc..7151a2fb 100644 --- a/learn/_pages/examples_test.ts +++ b/learn/_pages/examples_test.ts @@ -5,7 +5,7 @@ import { assertEquals, assertNotMatch } from "@std/assert"; const decoder = new TextDecoder(); Deno.test("Check examples", async (t) => { - for await (const item of walk("/learn/examples")) { + for await (const item of walk("./learn/examples")) { const path = join("examples", item.name); if (!path.endsWith(".ts")) continue;