new tests
This commit is contained in:
parent
27ae801067
commit
d4b45e1bd8
|
@ -28,7 +28,23 @@ describe('POST /todos', () => {
|
|||
expect(todos.length).toBe(1);
|
||||
expect(todos[0].text).toBe(text);
|
||||
done();
|
||||
})
|
||||
}).catch((e) => done(e));
|
||||
})
|
||||
});
|
||||
|
||||
it('should NOT create a new todo', (done) => {
|
||||
request(app)
|
||||
.post('/todos')
|
||||
.send()
|
||||
.expect(400)
|
||||
.end((err, res) => {
|
||||
if (err) {
|
||||
return done(err);
|
||||
}
|
||||
Todo.find().then((todos) => {
|
||||
expect(todos.length).toBe(0);
|
||||
done();
|
||||
}).catch((e) => done(e));
|
||||
})
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue
Block a user