Skip to content

Commit

Permalink
Update development dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmingoia committed Jan 20, 2015
1 parent 98a57b9 commit d206a4c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
"pluralize": "^1.1.1"
},
"devDependencies": {
"koa": "0.3.0",
"mocha": "1.12.0",
"should": "1.2.2",
"supertest": "0.7.1"
"koa": "^0.15.0",
"mocha": "^2.1.0",
"should": "^4.6.1",
"supertest": "^0.15.0"
},
"scripts": {
"test": "NODE_ENV=test node_modules/mocha/bin/mocha --harmony-generators --reporter spec"
Expand Down
2 changes: 1 addition & 1 deletion test/resource.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ describe('Resource', function() {
index: function *() {},
show: function *() {}
});
resource.should.be.a('object');
resource.should.be.have.type('object');
resource.should.have.property('name', 'forums');
resource.should.have.property('id', 'forum');
resource.should.have.property('routes');
Expand Down

0 comments on commit d206a4c

Please sign in to comment.