From ffc906060726c77ceae4162c4988af5b7c26e30d Mon Sep 17 00:00:00 2001 From: mgabor <9047995+mgabor3141@users.noreply.github.com> Date: Mon, 29 Sep 2025 20:44:49 +0200 Subject: [PATCH] Fix file path quoting in Deno test task configuration (#39134) Closes https://github.com/zed-extensions/deno/issues/14 Release Notes: - N/A --- docs/src/languages/deno.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/languages/deno.md b/docs/src/languages/deno.md index c90450831bf01e43a8f1476ca0d6d0148be3a10d..b2ef5a3565002047819110a253be292b5c592a93 100644 --- a/docs/src/languages/deno.md +++ b/docs/src/languages/deno.md @@ -114,7 +114,7 @@ To run deno tasks like tests from the ui, add this to `.zed/tasks.json` [ { "label": "deno test", - "command": "deno test -A --filter '/^$ZED_CUSTOM_DENO_TEST_NAME$/' $ZED_FILE", + "command": "deno test -A --filter '/^$ZED_CUSTOM_DENO_TEST_NAME$/' '$ZED_FILE'", "tags": ["js-test"] } ]