Skip to content

Commit 8e6ee62

Browse files
committed
Update dev-dependencies
1 parent c8170b1 commit 8e6ee62

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"tinyify": "^3.0.0",
5151
"to-vfile": "^6.0.0",
5252
"unist-util-visit": "^2.0.0",
53-
"xo": "^0.35.0"
53+
"xo": "^0.38.0"
5454
},
5555
"scripts": {
5656
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",

test/index.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,8 +348,12 @@ test('hast-util-from-parse5', function (t) {
348348

349349
test('fixtures', function (t) {
350350
var base = join('test', 'fixtures')
351+
var files = fs.readdirSync(base).filter(not(hidden))
352+
var index = -1
351353

352-
fs.readdirSync(base).filter(not(hidden)).forEach(each)
354+
while (++index < files.length) {
355+
each(files[index])
356+
}
353357

354358
t.end()
355359

0 commit comments

Comments
 (0)