chiefmyron / phpunit-test-workbench

An extension to integrate PHPUnit with the native Test Explorer functionality within VS Code. Zero configuration required for common environment setups.
https://marketplace.visualstudio.com/items?itemName=chiefmyron.phpunit-test-workbench
MIT License
5 stars 2 forks source link

All test files being reparsed whenever any single test file is saved #43

Closed chiefmyron closed 1 year ago

chiefmyron commented 1 year ago

Saving a file being watched by the extension (either a test file or a configuration file) results in the entire test tree being re-parsed from scratch, which is unnecessary.

On saving a test file, only the class and child methods should be re-parsed. On saving a config file, all test files in the related workspace folder should be re-parsed (as test identification settings or test suite defintions may have changed).