Open
Description
Is your feature request related to a problem? Please describe.
Testing on save is extremely convenient for TDD-style workflows. However, at the moment it involves running the entire test suite on every save, which can be excessive for such a frequent operation.
Describe the solution you'd like
Add a previous
option to go.testOnSave
(essentially turning it into an enum with the options off/previous/all
).
When set to previous
, the extension should effectively run Go: Test Previous
every time the user saves.