Skip to content

Commit

Permalink
docs: Add missing comma in the command
Browse files Browse the repository at this point in the history
  • Loading branch information
Thouhedul Islam committed Jul 3, 2021
1 parent 81447bd commit 04e7192
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'.
}
```
Expand All @@ -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"
}
```
Expand Down

0 comments on commit 04e7192

Please sign in to comment.