The parser is not detecting the namespaces and tests if functions are used instead of arrow functions, the below items are not detected.
describe('block', function (){
...
})
it('block', function (){
...
})
I changed the treesitter querries to accommodate non arrow functions.
Unfortunately, I do not know how to run the test, tried lua test/basic_spec.lua, it did not work. However, the changes do work as expected, I tested these changes in neovim. Kindly give some guidance on testing or please feel free to takeover.
The parser is not detecting the namespaces and tests if functions are used instead of arrow functions, the below items are not detected.
I changed the treesitter querries to accommodate non arrow functions.
Unfortunately, I do not know how to run the test, tried
lua test/basic_spec.lua
, it did not work. However, the changes do work as expected, I tested these changes in neovim. Kindly give some guidance on testing or please feel free to takeover.