Skip to content

Commit

Permalink
chore: bump hoek
Browse files Browse the repository at this point in the history
  • Loading branch information
Marsup committed Jan 21, 2023
1 parent 87228f0 commit eff6369
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const internals = {

// Hoek

Hoek.Error
Hoek.AssertError
]
};

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
},
"dependencies": {
"@hapi/boom": "^10.0.0",
"@hapi/hoek": "^10.0.0"
"@hapi/hoek": "^11.0.2"
},
"devDependencies": {
"@hapi/code": "^9.0.0",
"@hapi/eslint-plugin": "*",
"@hapi/lab": "25.0.0-beta.1"
"@hapi/lab": "^25.1.0"
},
"scripts": {
"test": "lab -a @hapi/code -t 100 -L",
Expand Down
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ describe('Bounce', () => {

it('identifies hoek Error as system', () => {

expect(Bounce.isSystem(new Hoek.Error([]))).to.be.true();
expect(Bounce.isSystem(new Hoek.AssertError([]))).to.be.true();
});

it('identifies Error as non-system', () => {
Expand Down

0 comments on commit eff6369

Please sign in to comment.