zed/extensions/gleam/languages/gleam/tasks.json
Marshall Bowers 77f0d35684
gleam: Add gleam test task (#11801)
This PR adds a task for running `gleam test`.

Release Notes:

- N/A
2024-05-14 10:45:14 -04:00

13 lines
245 B
JSON

[
{
"label": "gleam test",
"command": "gleam",
"args": ["test"]
},
{
"label": "gleam test $ZED_SYMBOL",
"command": "gleam",
"args": ["test", "--", "--test-name-filter=$ZED_SYMBOL"],
"tags": ["gleam-test"]
}
]