Skip to content

Commit 6f00215

Browse files
committed
Add missing dependency, upgrade package deps, and fix superagent error
The new version of Chai apparently considers errors not to be objects
1 parent d55f517 commit 6f00215

File tree

3 files changed

+33
-21
lines changed

3 files changed

+33
-21
lines changed

.gitattributes

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
*.json -diff
1+
./**/*.json -diff

package.json

+17-15
Original file line numberDiff line numberDiff line change
@@ -41,30 +41,32 @@
4141
"node": ">= 0.10.0"
4242
},
4343
"dependencies": {
44-
"bluebird": "^3.1.1",
44+
"bluebird": "^3.4.1",
4545
"li": "^1.0.1",
4646
"lodash": "^2.4.2",
4747
"node.extend": "^1.1.5",
48-
"qs": "^6.0.2",
49-
"route-parser": "^0.0.4",
50-
"superagent": "^1.7.0"
48+
"parse-link-header": "^0.4.1",
49+
"qs": "^6.2.0",
50+
"route-parser": "0.0.4",
51+
"superagent": "^1.8.3"
5152
},
5253
"devDependencies": {
53-
"chai": "^1.10.0",
54-
"chai-as-promised": "^4.3.0",
55-
"grunt": "^0.4.5",
56-
"grunt-cli": "^0.1.13",
57-
"grunt-contrib-yuidoc": "^0.5.2",
58-
"istanbul": "^0.3.22",
59-
"jscs": "^3.0.4",
54+
"chai": "^3.5.0",
55+
"chai-as-promised": "^5.3.0",
56+
"grunt": "^1.0.1",
57+
"grunt-cli": "^1.2.0",
58+
"grunt-contrib-jshint": "^1.0.0",
59+
"grunt-contrib-yuidoc": "^1.0.0",
60+
"istanbul": "^0.4.4",
61+
"jscs": "^3.0.5",
6062
"jscs-stylish": "^0.3.1",
6163
"jshint": "^2.9.2",
6264
"jshint-stylish": "^2.2.0",
63-
"load-grunt-tasks": "^0.6.0",
65+
"load-grunt-tasks": "^3.5.0",
6466
"minimist": "^1.2.0",
65-
"mocha": "^1.21.5",
66-
"sandboxed-module": "^1.0.3",
67-
"sinon": "^1.17.2",
67+
"mocha": "^2.5.3",
68+
"sandboxed-module": "^2.0.3",
69+
"sinon": "^1.17.4",
6870
"sinon-chai": "^2.8.0"
6971
}
7072
}

tests/integration/posts.js

+15-5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ var SUCCESS = 'success';
77
// actually run.
88
chai.use( require( 'chai-as-promised' ) );
99
var expect = chai.expect;
10+
var sinon = require( 'sinon' );
1011

1112
/*jshint -W079 */// Suppress warning about redefiniton of `Promise`
1213
var Promise = require( 'bluebird' );
@@ -69,13 +70,22 @@ function getTitles( posts ) {
6970

7071
describe( 'integration: posts()', function() {
7172
var wp;
73+
var sinonSandbox;
7274

7375
beforeEach(function() {
76+
// Stub warn to suppress notice about overwriting deprecated .post method
77+
sinonSandbox = sinon.sandbox.create();
78+
sinonSandbox.stub( global.console, 'warn' );
7479
wp = new WP({
7580
endpoint: 'http://wpapi.loc/wp-json'
7681
});
7782
});
7883

84+
afterEach(function() {
85+
// Restore sandbox
86+
sinonSandbox.restore();
87+
});
88+
7989
it( 'can be used to retrieve a list of recent posts', function() {
8090
var prom = wp.posts().get().then(function( posts ) {
8191
expect( posts ).to.be.an( 'array' );
@@ -278,7 +288,7 @@ describe( 'integration: posts()', function() {
278288
id = posts[ 0 ].id;
279289
return wp.posts().id( id ).delete();
280290
}).catch(function( err ) {
281-
expect( err ).to.be.an( 'object' );
291+
expect( err ).to.be.an.instanceOf( Error );
282292
expect( err ).to.have.property( 'status' );
283293
expect( err.status ).to.equal( 401 );
284294
// Ensure that the post was NOT deleted by querying for it again
@@ -296,7 +306,7 @@ describe( 'integration: posts()', function() {
296306
title: 'New Post 2501',
297307
content: 'Some Content'
298308
}).catch(function( err ) {
299-
expect( err ).to.be.an( 'object' );
309+
expect( err ).to.be.an.instanceOf( Error );
300310
expect( err ).to.have.property( 'status' );
301311
expect( err.status ).to.equal( 401 );
302312
return SUCCESS;
@@ -313,7 +323,7 @@ describe( 'integration: posts()', function() {
313323
content: 'Some Content'
314324
});
315325
}).catch(function( err ) {
316-
expect( err ).to.be.an( 'object' );
326+
expect( err ).to.be.an.instanceOf( Error );
317327
expect( err ).to.have.property( 'status' );
318328
expect( err.status ).to.equal( 401 );
319329
return SUCCESS;
@@ -381,7 +391,7 @@ describe( 'integration: posts()', function() {
381391
// the unauthenticated user does not have permissions to see it
382392
return wp.posts().id( id );
383393
}).catch(function( error ) {
384-
expect( error ).to.be.an( 'object' );
394+
expect( error ).to.be.an.instanceOf( Error );
385395
expect( error ).to.have.property( 'status' );
386396
expect( error.status ).to.equal( 403 );
387397
// Re-authenticate & permanently delete this post
@@ -396,7 +406,7 @@ describe( 'integration: posts()', function() {
396406
// just trashed but now deleted permanently
397407
return wp.posts().auth( credentials ).id( id );
398408
}).catch(function( error ) {
399-
expect( error ).to.be.an( 'object' );
409+
expect( error ).to.be.an.instanceOf( Error );
400410
expect( error ).to.have.property( 'status' );
401411
expect( error.status ).to.equal( 404 );
402412
return SUCCESS;

0 commit comments

Comments
 (0)