From 04e7192e4533beb73a376f63c590478a4703a19c Mon Sep 17 00:00:00 2001 From: Thouhedul Islam Date: Sat, 3 Jul 2021 18:15:00 +0200 Subject: [PATCH] docs: Add missing comma in the command --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ffc7e28..a82cf35 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ Config: ``` { "better-phpunit.commandSuffix": null, // This string will be appended to the phpunit command, it's a great place to add flags like '--stop-on-failure' - "better-phpunit.phpunitBinary": null // A custom phpunit binary. Ex: 'phpunit', '/usr/local/bin/phpunit' + "better-phpunit.phpunitBinary": null, // A custom phpunit binary. Ex: 'phpunit', '/usr/local/bin/phpunit' "better-phpunit.suiteSuffix": null // Specify options to appended only to the 'run suite' command, for example add options like '--testsuite unit' or '--coverage --coverage-xml'. } ``` @@ -62,7 +62,7 @@ Running tests over ssh (For VMs like Laravel Homestead): }, "better-phpunit.ssh.user": "user", "better-phpunit.ssh.host": "host", - "better-phpunit.ssh.port": "22" + "better-phpunit.ssh.port": "22", "better-phpunit.ssh.binary": "putty -ssh" } ```