Closed olimorris closed 2 years ago
Ref: #15. The following code will not currently run:
RSpec.describe Class do describe '.new' do it 'handles the "." method naming convention' do expect(Class.new).to be_a(Class) end end end
The RSpec full_description id is: Class.new handles the "." method naming convention
Class.new handles the "." method naming convention
and the Treesitter ID is Class .new handles the "." method naming convention
Class .new handles the "." method naming convention
The space in the Treesitter ID is causing the issue so need to find a neat way to resolve it.
Update: Working on solving this with https://github.com/olimorris/neotest-rspec/tree/rspec-formatter
Ref: #15. The following code will not currently run:
The RSpec full_description id is:
Class.new handles the "." method naming convention
and the Treesitter ID is
Class .new handles the "." method naming convention
The space in the Treesitter ID is causing the issue so need to find a neat way to resolve it.