We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
unifiedjs
Learn more about funding links in repositories.
Report abuse
1 parent 0bc3b8d commit 9ce72b2Copy full SHA for 9ce72b2
package.json
@@ -48,7 +48,7 @@
48
"tape": "^5.0.0",
49
"type-coverage": "^2.0.0",
50
"typescript": "^4.0.0",
51
- "xo": "^0.47.0"
+ "xo": "^0.50.0"
52
},
53
"scripts": {
54
"prepack": "npm run build && npm run format",
test.js
@@ -58,7 +58,7 @@ test('toVFile()', (t) => {
58
59
t.test('should accept a WHATWG URL object', (t) => {
60
const dir = fileURLToPath(new URL('./', import.meta.url))
61
- const file = toVFile(new URL('./baz.qux', import.meta.url))
+ const file = toVFile(new URL('baz.qux', import.meta.url))
62
63
t.equal(file.path, join(dir, 'baz.qux'))
64
t.equal(file.basename, 'baz.qux')
0 commit comments