Skip to content

Commit

Permalink
Update deps. Closes #515
Browse files Browse the repository at this point in the history
  • Loading branch information
hueniverse committed Dec 1, 2016
1 parent f957062 commit 265a5ca
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "good",
"description": "Server and process monitoring plugin",
"version": "7.0.2",
"version": "7.0.3",
"repository": "git://github.com/hapijs/good",
"main": "lib/index.js",
"keywords": [
Expand All @@ -16,8 +16,8 @@
"node": ">=4.0.0"
},
"dependencies": {
"hoek": "3.x.x",
"joi": "7.x.x",
"hoek": "4.x.x",
"joi": "10.x.x",
"oppsy": "1.x.x",
"pumpify": "1.3.x"
},
Expand All @@ -26,8 +26,8 @@
},
"devDependencies": {
"async": "1.5.x",
"code": "3.x.x",
"hapi": "15.x.x",
"code": "4.x.x",
"hapi": "16.x.x",
"lab": "11.x.x"
},
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions test/monitor.js
Expand Up @@ -374,7 +374,7 @@ describe('Monitor', () => {

describe('monitoring', () => {

it('sends events to all reporters when they occur', { plan: 11 }, (done) => {
it('sends events to all reporters when they occur', { }, (done) => {

const server = new Hapi.Server({ debug: false });
server.connection();
Expand Down Expand Up @@ -433,7 +433,7 @@ describe('Monitor', () => {
const res2 = out2.data;

expect(res1).to.have.length(4);
expect(res1).to.contain([{
expect(res1).to.part.contain([{
event: 'request',
tags: ['test-tag'],
data: 'log request data',
Expand Down Expand Up @@ -464,7 +464,7 @@ describe('Monitor', () => {
expect(err1.error.stack.split('\n')[0]).to.equal('Error: Uncaught error: mock error');

expect(res2).to.have.length(4);
expect(res2).to.contain([{
expect(res2).to.part.contain([{
event: 'request',
tags: ['test-tag'],
data: 'log request data',
Expand Down

0 comments on commit 265a5ca

Please sign in to comment.