Inflearn Community Q&A
에러가 납니다.
Written on
·
204
0
describe('GET /users/1는', () => {
describe('성공시', () => {
it('id가 1인 유저 객체를 반환한다.', (done) => {
request(app)
.get('/users/1')
.end((err, res) => {
res.body.should.have.property('id',1);
done();
});
});
});
})
이런에러가 뜨네요.
nodejsexpressrest-apitdd
Answer
This question is waiting for answers
Be the first to answer!





