0
모카를 사용하여 단위 테스트를 작성하고 있으며 모바일 사용자 에이전트를 조롱하는 데 문제가 있습니다. 나는 다음과 같은 시험이 있습니다모카를 사용하는 모의 모바일 사용자 에이전트
describe('GET /android/update', function() {
it('should update android', function (done) {
var self = this;
self.sess.get('/android/update')
.expect('Content-Type', /json/)
.expect(200, done);
});
});
테스트 통과에 도착하기를, 나는 모바일 사용자 에이전트를 조롱 할 필요가있다. 어떤 제안?