From 6017f63492a3dbf35a38752d9a90b6882b46349c Mon Sep 17 00:00:00 2001 From: Jo Franchetti Date: Mon, 25 Nov 2024 17:49:27 +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 7151a2fb..3931c37b 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;