vscode-phpunit
vscode-phpunit copied to clipboard
The VS Code Test Explorer extension for PHPUnit
if I add: ``` json { "phpunit.php": "/usr/bin/docker-compose run --rm app php", "phpunit.phpunit": "/var/www/html/vendor/bin/phpunit } ``` Config options and try to run the tests I get back. ``` spawn /usr/bin/docker-compose...
Bumps [url-parse](https://github.com/unshiftio/url-parse) from 1.4.7 to 1.5.10. Commits 8cd4c6c 1.5.10 ce7a01f [fix] Improve handling of empty port 0071490 [doc] Update JSDoc comment a7044e3 [minor] Use more descriptive variable name d547792 [security]...
Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.10.0 to 6.12.6. Release notes Sourced from ajv's releases. v6.12.6 Fix performance issue of "url" format. v6.12.5 Fix uri scheme validation (@ChALkeR). Fix boolean schemas with strictKeywords...
Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.10.0 to 6.12.6. Release notes Sourced from ajv's releases. v6.12.6 Fix performance issue of "url" format. v6.12.5 Fix uri scheme validation (@ChALkeR). Fix boolean schemas with strictKeywords...
when there is an issue in a dataprovider, the only output visible is this: ``` PHPUnit 9.5.11 by Sebastian Bergmann and contributors. Runtime: PHP 8.0.14 Configuration: phpunit.xml No tests executed!...
Showing the test name prefix (such as `test_`) seems like a waste of space, especially when the tests have lengthy names. It would be nice to have an option in...
when there is a php stacktrace in the output it like this: ``` Peak memory: 69.76 mo Trace: - /var/www/app/CommandApiTest.php:1230 - /var/www/app/Commands/Command.php:16 - /var/www/console:40 /var/www/proton/Foundation/Testing/ApiTestBase.php:102 /var/www/proton/Foundation/Testing/ApiTestBase.php:118 /var/www/app/Commands/Core/wrappers.php:16 ``` the pattern...
Terminal supports colors, and is easy to access. If this runs in the Output tab, it's hard to figure out that it actually ran, and I need to remember that...
I run PHPUnit in Docker (I develop on Windows), with these settings: Workspace settings: ``` "phpunit.php": "", "phpunit.phpunit": "C:\\node\\npm.cmd", "phpunit.args": ["run", "build-runtests", "--"], "phpunit.relativeFilePath": true, "phpunit.remoteCwd": "/opt/app/", "phpunit.files": "myapp/tests/*Test.php", ```...
I am on Windows 10 and this is my project structure: /local/test/**/*Test.php - all my test files /local/tests/phpunit.xml.dist - phpunit config file "phpunit.files": "{test,tests}/**/*Test.php", pic. http://joxi.ru/bmoN4nyc7ZqbPr What am I doing...