hbenl / vscode-jasmine-test-adapter

Jasmine Test Adapter for the VS Code Test Explorer
MIT License
20 stars 20 forks source link

Fixes #62 #63

Closed apla closed 2 years ago

apla commented 2 years ago

I've added specRealDir property for adapter config. When workspace folder aren't symlinked, specDir and specRealDir are the same. When workspace folder is symlinked, specDir and specRealDir differs, test cases file names returned after processed with fs.realpath() and those file names matches specRealDir.

This should work for both cases: symlinked and regular.

hbenl commented 2 years ago

Thanks!