diff --git a/languages/php/tasks.json b/languages/php/tasks.json index a14bbb8..e2d1e7c 100644 --- a/languages/php/tasks.json +++ b/languages/php/tasks.json @@ -5,12 +5,36 @@ "args": ["--filter", "\"$ZED_SYMBOL\"", "$ZED_FILE"], "tags": ["phpunit-test"] }, + { + "label": "phpunit test $ZED_FILENAME", + "command": "./vendor/bin/phpunit", + "args": ["$ZED_FILE"], + "tags": ["phpunit-test"] + }, + { + "label": "phpunit run all tests", + "command": "./vendor/bin/phpunit", + "args": [], + "tags": ["phpunit-test"] + }, { "label": "pest test $ZED_SYMBOL", "command": "./vendor/bin/pest", "args": ["--filter", "\"$ZED_SYMBOL\"", "$ZED_FILE"], "tags": ["pest-test"] }, + { + "label": "pest test $ZED_FILENAME", + "command": "./vendor/bin/pest", + "args": ["$ZED_FILE"], + "tags": ["pest-test"] + }, + { + "label": "pest run all tests", + "command": "./vendor/bin/pest", + "args": [], + "tags": ["pest-test"] + }, { "label": "execute selection $ZED_SELECTED_TEXT", "command": "php",