Fix file path quoting in Deno test task configuration (#39134)

Closes https://github.com/zed-extensions/deno/issues/14

Release Notes:

- N/A
This commit is contained in:
mgabor
2025-09-29 20:44:49 +02:00
committed by GitHub
parent 4fc4707cfc
commit ffc9060607
+1 -1
View File
@@ -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"]
}
]