从api检查响应头

时间:2019-05-15 15:17:42

标签: node.js testing mocha chai chai-http

我正在运行测试,我想针对内容Content-Type:application / pdf来测试响应标头。此api调用返回pdf文件。这是我尝试过的

**规格文件**

const chaiHTTP=require('chai-http');
chai.use(chaiHTTP);
const app=require('../../app'); 

 it.only('should test pdf',function(done){
   const log=chai.request(app).get('/api/getPDF').set(req);
   console.log(log.header);
   expect(log.header.content-type).to.be.eql(' application/pdf');//fails
   done();
 })

0 个答案:

没有答案