| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
|
You may need to add a section and skip for IBM i. |
Sorry, something went wrong.
Sorry, something went wrong.
|
According to the docs:
So you'll get different results depending on where you are in the file system. > process.cwd()
'/'
> path.posix.relative('a/b/c', '../../x');
'../../../x'
> process.chdir('/Users/trott/io.js')
undefined
> process.cwd()
'/Users/trott/io.js'
> path.posix.relative('a/b/c', '../../x');
'../../../../../x'
>
So I updated the test to use a regex to make sure we cover all (three) possibilities. |
Sorry, something went wrong.
Sorry, something went wrong.
Add a known_issues test for a known Windows issue. Refs: nodejs#13683 PR-URL: nodejs#37744 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
| Back | FazBrowse Home | New Git URL |
Add a known_issues test for a known Windows issue.
Refs: #13683