olimorris / neotest-rspec

🧪 Neotest adapter for RSpec. Works in Docker containers too
MIT License
88 stars 25 forks source link

Missing comma is readme example #7

Closed prdanelli closed 2 years ago

prdanelli commented 2 years ago

Sorry for the silly issue, but I thought it would be best to let you know:

use({
  'nvim-neotest/neotest',
  requires = {
    ...,
    'olimorris/neotest-rspec',
  } -- <== missing a comma here :)
  config = function()
    require('neotest').setup({
      ...,
      adapters = {
        require('neotest-rspec'),
      }
    })
  end
})
olimorris commented 2 years ago

Great spot!!! Thank you. Guaranteed everyone who has downloaded the plugin got hit with that error 😄 .

Thanks for your comments as well. Feel free to open up any other issues to discuss them. I've haven't looked at the output from the tests yet so will try and address tomorrow.

Also...still think there are likely to be weird RSpec use cases so if any tests aren't running please let me know.