Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Jan 11, 2019
1 parent d804228 commit 39ad0d9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -56,19 +56,19 @@
],
"dependencies": {
"array-union": "^1.0.2",
"dir-glob": "^2.0.0",
"fast-glob": "^2.2.3",
"dir-glob": "^2.2.1",
"fast-glob": "^2.2.6",
"glob": "^7.1.3",
"ignore": "^4.0.3",
"pify": "^4.0.1",
"slash": "^2.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"ava": "^1.0.1",
"glob-stream": "^6.1.0",
"globby": "sindresorhus/globby#master",
"matcha": "^0.7.0",
"rimraf": "^2.2.8",
"rimraf": "^2.6.3",
"xo": "^0.23.0"
},
"xo": {
Expand Down
4 changes: 2 additions & 2 deletions test.js
Expand Up @@ -170,8 +170,8 @@ test.failing('relative paths and ignores option', t => {
const msg = 'Patterns must be a string or an array of strings';

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

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

0 comments on commit 39ad0d9

Please sign in to comment.