У меня есть этот простой тест
describe('Returns json', function() {
it('all bookings', function(done) {
request(app)
.get('/route')
.set('Accept', 'application/json')
.expect('Content-Type', /json/)
.expect(200, done);
});
});
При запуске мокко я получаю следующую ошибку
TypeError: Cannot read property 'address' of undefined
at Test.serverAddress (node_modules/supertest/lib/test.js:55:18)
at new Test (node_modules/supertest/lib/test.js:36:12)
at Object.obj.(anonymous function) [as get] (node_modules/supertest/index.js:25:14)
at Context.<anonymous> (test/test.js:22:8)
Я пробовал то, что предлагали другие пользователи, в частности эти ответы
Есть идеи?