mirror of https://github.com/lukechilds/node.git
Browse Source
PR-URL: https://github.com/nodejs/node/pull/16128 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Bradley Meck <bradley.meck@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>v9.x-staging
committed by
Anna Henningsen
3 changed files with 19 additions and 0 deletions
@ -0,0 +1,7 @@ |
|||
'use strict'; |
|||
require('../common'); |
|||
|
|||
// Trivial test to assert we can load files with `%` in their pathname.
|
|||
// Imported by `test-esm-double-encoding.mjs`.
|
|||
|
|||
module.exports = 42; |
@ -0,0 +1,6 @@ |
|||
// Flags: --experimental-modules
|
|||
import '../common'; |
|||
|
|||
// Assert we can import files with `%` in their pathname.
|
|||
|
|||
import './test-esm-double-encoding-native%2520.js'; |
Loading…
Reference in new issue