mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
deps: supertest@1.1.0
Closes #6449 - supertest now includes a `.then()` method and as a result, only one of either .then or .end may be called on a request object.
This commit is contained in:
parent
bda942e20a
commit
2528ce5304
@ -25,7 +25,7 @@ describe('Public API', function () {
|
|||||||
return testUtils.doAuth(request, 'posts', 'tags');
|
return testUtils.doAuth(request, 'posts', 'tags');
|
||||||
}).then(function (token) {
|
}).then(function (token) {
|
||||||
// enable public API
|
// enable public API
|
||||||
return request.put(testUtils.API.getApiQuery('settings/'))
|
request.put(testUtils.API.getApiQuery('settings/'))
|
||||||
.set('Authorization', 'Bearer ' + token)
|
.set('Authorization', 'Bearer ' + token)
|
||||||
.send(publicAPIaccessSetting)
|
.send(publicAPIaccessSetting)
|
||||||
.expect('Content-Type', /json/)
|
.expect('Content-Type', /json/)
|
||||||
|
@ -537,13 +537,9 @@ login = function login(request) {
|
|||||||
password: user.password,
|
password: user.password,
|
||||||
client_id: 'ghost-admin',
|
client_id: 'ghost-admin',
|
||||||
client_secret: 'not_available'
|
client_secret: 'not_available'
|
||||||
}).end(function (err, res) {
|
}).then(function then(res) {
|
||||||
if (err) {
|
|
||||||
return reject(err);
|
|
||||||
}
|
|
||||||
|
|
||||||
resolve(res.body.access_token);
|
resolve(res.body.access_token);
|
||||||
});
|
}, reject);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -99,7 +99,7 @@
|
|||||||
"rimraf-then": "^1.0.0",
|
"rimraf-then": "^1.0.0",
|
||||||
"should": "6.0.3",
|
"should": "6.0.3",
|
||||||
"sinon": "1.14.1",
|
"sinon": "1.14.1",
|
||||||
"supertest": "1.0.1",
|
"supertest": "1.1.0",
|
||||||
"testem": "0.8.3",
|
"testem": "0.8.3",
|
||||||
"top-gh-contribs": "2.0.2"
|
"top-gh-contribs": "2.0.2"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user