We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NeoVim
Windows WSL
Libraries
Using busted and luassert addons should set the type for the builtin assert object to be luassert
luassert
assert type still the simple function.
server settings:
"workspace": { "checkThirdParty": 'Disable', "library": [ "${addons}/luassert/module/library/", "${addons}/busted/module/library/" ] }
I managed to locally fix by changing the busted addon from
assert = require("luassert") spy = require("luassert.spy") stub = require("luassert.stub") mock = require("luassert.mock")
to
---@type luassert assert = require("luassert") ---@type luassert.spy spy = require("luassert.spy") ---@type luassert.stub stub = require("luassert.stub") ---@type luassert.mock mock = require("luassert.mock")
For some reason, the luals is not setting the correct type trhough the assignment done by the busted addon.
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
How are you using the lua-language-server?
NeoVim
Which OS are you using?
Windows WSL
What is the issue affecting?
Libraries
Expected Behaviour
Using busted and luassert addons should set the type for the builtin assert object to be
luassert
Actual Behaviour
assert type still the simple function.
Reproduction steps
server settings:
Additional Notes
I managed to locally fix by changing the busted addon from
to
For some reason, the luals is not setting the correct type trhough the assignment done by the busted addon.
Log File
No response
The text was updated successfully, but these errors were encountered: