Skip to content

Commit 39ad0d9

Browse files
committed
Update dependencies
1 parent d804228 commit 39ad0d9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -56,19 +56,19 @@
5656
],
5757
"dependencies": {
5858
"array-union": "^1.0.2",
59-
"dir-glob": "^2.0.0",
60-
"fast-glob": "^2.2.3",
59+
"dir-glob": "^2.2.1",
60+
"fast-glob": "^2.2.6",
6161
"glob": "^7.1.3",
6262
"ignore": "^4.0.3",
6363
"pify": "^4.0.1",
6464
"slash": "^2.0.0"
6565
},
6666
"devDependencies": {
67-
"ava": "^0.25.0",
67+
"ava": "^1.0.1",
6868
"glob-stream": "^6.1.0",
6969
"globby": "sindresorhus/globby#master",
7070
"matcha": "^0.7.0",
71-
"rimraf": "^2.2.8",
71+
"rimraf": "^2.6.3",
7272
"xo": "^0.23.0"
7373
},
7474
"xo": {

test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ test.failing('relative paths and ignores option', t => {
170170
const msg = 'Patterns must be a string or an array of strings';
171171

172172
test(`rejects the promise for invalid patterns input: ${valstring} - async`, async t => {
173-
await t.throws(m(v), TypeError);
174-
await t.throws(m(v), msg);
173+
await t.throwsAsync(m(v), TypeError);
174+
await t.throwsAsync(m(v), msg);
175175
});
176176

177177
test(`throws for invalid patterns input: ${valstring}`, t => {

0 commit comments

Comments
 (0)