ruby-lsp-rspec icon indicating copy to clipboard operation
ruby-lsp-rspec copied to clipboard

A Ruby LSP addon for RSpec tests

Results 24 ruby-lsp-rspec issues
Sort by recently updated
recently updated
newest added

Hi! I'm having issues trying to debug test using the debugger. Getting this error: ![Screenshot 2024-06-17 at 16 29 12](https://github.com/st0012/ruby-lsp-rspec/assets/16313890/3c25e878-7464-4893-8b94-1e9da480579e) Looking into the RubyLSP output i only see (there might...

As far as I can tell, it is depending on a core-ext from `ruby-lsp` but is not directly requiring it, so when the test runner requires the formatter, it results...

The application I'm working on leverages direnv to seed the environment with necessary environment variables. When I attempt to run tests via this extension I can see that these environment...

Would love to see this working for Capybara feature specs! Would just need to look for the `feature` and `scenario` keywords. ``` ruby feature "Feature", :js do scenario "does a...

This is caused by https://github.com/Shopify/ruby-lsp/pull/2082 excluding the `spec` folder from the default indexing, which was what provides the definitions of `subject` and `let` declarations. Without the initial indexing, we can...

https://github.com/user-attachments/assets/e4c37d1b-fc47-4f49-819b-8f4b6f4ef93b **Problem** Video shows running `Debug Test` via `Test Explorer` does not wait for the debugger. It returns immediately and passes. Also, if the test fails it still reports as...

Ubuntu 24.04 VS Code 1.105.1 ruby 3.2.8 Gemfile.lock: ruby-lsp (0.26.2) language_server-protocol (~> 3.17.0) prism (>= 1.2, < 2.0) rbs (>= 3, < 5) ruby-lsp-rspec (0.1.28) ruby-lsp (~> 0.26.0) The below...

The RubyLSP Test Explorer offers the following [config option](https://shopify.github.io/ruby-lsp/test_explorer.html#test-explorer): ```json "rubyLsp.featureFlags": { "fullTestDiscovery": true } ``` However, when I **turn it on**, the rspec command is executed as following: ```...