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;