我正在运行测试,我想针对内容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();
})