vscode-run-rspec-file
vscode-run-rspec-file copied to clipboard
Feature Request: run spec for all open spec files
When I working I will open on the editor all the relevant spec files to the task at hand. Would be good to run a command that runs all the spec files currently open in the editor rather than running each one by one.
if I have the following files open in vscode:
- app/models/widget.rb
- spec/models/widget_spec.rb
- spec/controllers/widget_controller_spec.rb
Running the command would execute:
bundle exec rspec --color spec/models/widget_spec.rb spec/controllers/widget_controller_spec.rb