We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f331312 commit 66b952bCopy full SHA for 66b952b
test/core.js
@@ -116,19 +116,19 @@ test(
116
117
assert.equal(
118
resolve('..', import.meta.url),
119
- pathToFileURL('../import-meta-resolve/').href,
+ pathToFileURL('./').href,
120
'should resolve a directory (1)'
121
)
122
123
124
resolve('../lib', import.meta.url),
125
- pathToFileURL('../import-meta-resolve/lib').href,
+ pathToFileURL('./lib').href,
126
'should resolve a directory (2)'
127
128
129
130
resolve('../lib/', import.meta.url),
131
- pathToFileURL('../import-meta-resolve/lib/').href,
+ pathToFileURL('./lib/').href,
132
'should resolve a directory (3)'
133
134
0 commit comments