change api test PATCH user to PUT user
parent
3c5dbcd71d
commit
bd18f7b4cf
|
@ -102,13 +102,13 @@ describe('Users', () => {
|
|||
});
|
||||
|
||||
/*
|
||||
* Test the /PATCH route
|
||||
* Test the /PUT route
|
||||
*/
|
||||
describe('/PATCH users', () => {
|
||||
it('it should not PATCH a user without auth-token provided', (done) => {
|
||||
describe('/PUT users', () => {
|
||||
it('it should not PUT a user without auth-token provided', (done) => {
|
||||
chai.request(server)
|
||||
.patch(urls.users + '/someId')
|
||||
.send({})
|
||||
.put(urls.users + '/someId')
|
||||
.send({_id: "someId"})
|
||||
.end((err, res) => {
|
||||
res.should.have.status(codes.forbidden);
|
||||
res.body.should.be.a('object');
|
||||
|
|
Loading…
Reference in New Issue