Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
test: fix range for parent URL test
  • Loading branch information
merceyz committed May 24, 2023
commit 99096a9daaaa15b1f09624ecdde88cef5c4cd307
2 changes: 2 additions & 0 deletions .yarn/versions/c594112e.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declined:
- "@yarnpkg/pnp"
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,7 @@ describe(`Plug'n'Play - ESM`, () => {
),
);

(loaderFlags.HAS_CONSOLIDATED_HOOKS ? test : test.skip)(
(loaderFlags.ALLOWS_NON_FILE_PARENT ? test : test.skip)(
`it should allow importing files regardless of parent URL`,
makeTemporaryEnv(
{
Expand Down
3 changes: 3 additions & 0 deletions packages/yarnpkg-pnp/sources/esm-loader/loaderFlags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ export const WATCH_MODE_MESSAGE_USES_ARRAYS = major > 19 || (major === 19 && min
// https://github.com/nodejs/node/pull/45659 changed the internal translators to be lazy loaded
// TODO: Update the version range if https://github.com/nodejs/node/pull/46425 lands.
export const HAS_LAZY_LOADED_TRANSLATORS = major > 19 || (major === 19 && minor >= 3);

// https://github.com/nodejs/node/pull/42881
export const ALLOWS_NON_FILE_PARENT = major > 18 || (major === 18 && minor >= 1) || (major === 16 && minor >= 17);