From 9f7190800638a8257c88ee60f9a353cf53c6d41b Mon Sep 17 00:00:00 2001 From: d1y Date: Mon, 24 Jun 2024 10:34:42 +0800 Subject: [PATCH] chore: zed add flutter-test task --- .zed/tasks.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.zed/tasks.json b/.zed/tasks.json index c8f9ad9..8249868 100644 --- a/.zed/tasks.json +++ b/.zed/tasks.json @@ -23,5 +23,13 @@ "use_new_terminal": true, "allow_concurrent_runs": false, "reveal": "always" + }, + { + "label": "flutter test", + "command": "flutter", + "args": [ "test" ], + "use_new_terminal": true, + "allow_concurrent_runs": false, + "reveal": "always" } ]