Use the test_cmd by default

This commit is contained in:
Paul Gauthier 2024-05-22 12:05:29 -07:00
parent 61ac9b7991
commit 210679f020

View file

@ -534,6 +534,8 @@ class Commands:
def cmd_test(self, args):
"Run a shell command and add the output to the chat on non-zero exit code"
if not args and self.coder.test_cmd:
args = self.coder.test_cmd
return self.cmd_run(args, True)