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
To keep my VS Code explorer clean, I tend to exclude out & dist folders using the files.exclude setting. This however, leads to this extension failing to locate the tests as it relies on vscode.workspace.findFiles.
Maybe glob can be used instead to locate all tests on the filesystem?
Cheers,
Nils
The text was updated successfully, but these errors were encountered:
Yes, you can use the new findFiles2 for this! You can use the existing shape for findFiles2 to achieve this right now, but I'd try to be ready to move to the new shape once I introduce it. You would just set useDefaultExcludes to false.
To keep my VS Code explorer clean, I tend to exclude out & dist folders using the
files.exclude
setting. This however, leads to this extension failing to locate the tests as it relies onvscode.workspace.findFiles
.Maybe
glob
can be used instead to locate all tests on the filesystem?Cheers,
Nils
The text was updated successfully, but these errors were encountered: