강의

멘토링

커뮤니티

Inflearn Community Q&A

iamhch247242's profile image
iamhch247242

asked

NodeJS API Server Built with Test-Driven Development (TDD)

에러가 납니다.

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!
iamhch247242's profile image
iamhch247242

asked

Ask a question