-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
test: fix vscode launch configuration for windows #1523
New issue
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
Conversation
This comment has been minimized.
This comment has been minimized.
Codecov Report
@@ Coverage Diff @@
## master #1523 +/- ##
=======================================
Coverage 95.49% 95.49%
=======================================
Files 150 150
Lines 6639 6639
Branches 1880 1880
=======================================
Hits 6340 6340
Misses 112 112
Partials 187 187
|
.vscode/launch.json
Outdated
"--runInBand", | ||
"--no-cache", | ||
"--no-coverage", | ||
"${fileBasename}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be fileBasenameNoExtension
fileBasename
will include .ts
, which means you can only run the test if you open the test file (because semi.ts
won't match semi.test.ts
)
"${fileBasename}" | |
"${fileBasenameNoExtension}" |
.vscode/launch.json
Outdated
"--runInBand", | ||
"--no-cache", | ||
"--no-coverage", | ||
"${fileBasename}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"${fileBasename}" | |
"${fileBasenameNoExtension}" |
Thank you! |
fixes #1519