То, что я смог выяснить, что просто изменив нижнюю ошибку на ошибку, это сработало, но все равно это их другой способ.
describe('/GET/:ID', () => {
it('should Get the task by ID', (done) => {
const book = new Task({ task: 'The Lord of the Rings' });
book.save((err, task) => {
chai.request(server)
.get(`/task/${task.id}`)
.send(task)
.end((error, res) => {
expect(res).to.have.status(200);
done();
});
});
});
});