You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a @testitem block, you can use @test and @test_throws without importing Test explicitly. However, this causes the LSP to complain about undefined symbols. I could add using Test to my module, but then I have to depend on Test directly.
I understand that this is a stub package which exports dummy macros and lets TestItemRunner do the heavy lifting. Could it also export @test and @test_throws to make those errors go away?
The text was updated successfully, but these errors were encountered:
I mean, yeah that would be wonderful, but doesn't that bring us back to "How do you expand macros with LS without running arbitrary code" can of worms?
In a
@testitem
block, you can use@test
and@test_throws
without importingTest
explicitly. However, this causes the LSP to complain about undefined symbols. I could addusing Test
to my module, but then I have to depend onTest
directly.I understand that this is a stub package which exports dummy macros and lets
TestItemRunner
do the heavy lifting. Could it also export@test
and@test_throws
to make those errors go away?The text was updated successfully, but these errors were encountered: