| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
There was a problem hiding this comment.
Please add the additional tests before merging.
Sorry, something went wrong.
|
Kim-Adeline Miguel (@kimadeline) You can instead use this.skip() inside tests to skip tests. |
Sorry, something went wrong.
|
Good point, I'll move the if (windows) condition inside the test and do something like: test(`Ensure drive letter is lower cased for local path mappings on Windows when host is '${host}'`, async () => {
if (os.name === 'Windows') {
this.skip();
}
// test code
}); |
Sorry, something went wrong.
|
Remember:
test(`Ensure drive letter is lower cased for local path mappings on Windows when host is '${host}'`, async function (){
if (os.name === 'Windows') {
return this.skip();
}
// test code
}); |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
For #5362