Skip to content

Commit 9ce72b2

Browse files
committedJun 11, 2022
Update dev-dependencies
1 parent 0bc3b8d commit 9ce72b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"tape": "^5.0.0",
4949
"type-coverage": "^2.0.0",
5050
"typescript": "^4.0.0",
51-
"xo": "^0.47.0"
51+
"xo": "^0.50.0"
5252
},
5353
"scripts": {
5454
"prepack": "npm run build && npm run format",

‎test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ test('toVFile()', (t) => {
5858

5959
t.test('should accept a WHATWG URL object', (t) => {
6060
const dir = fileURLToPath(new URL('./', import.meta.url))
61-
const file = toVFile(new URL('./baz.qux', import.meta.url))
61+
const file = toVFile(new URL('baz.qux', import.meta.url))
6262

6363
t.equal(file.path, join(dir, 'baz.qux'))
6464
t.equal(file.basename, 'baz.qux')

0 commit comments

Comments
 (0)
Please sign in to comment.