📜  “npm supertest - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:06.942000             🧑  作者: Mango

代码示例1
describe('GET /user', function() {  it('responds with json', function(done) {    request(app)      .get('/user')      .set('Accept', 'application/json')      .expect('Content-Type', /json/)      .expect(200, done);  });});