柴希望停止执行而不是失败

时间:2017-10-15 14:09:02

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

我的问题解决方法应该是一个非常基本的问题。我正在使用mocha,chai和chaihttp来测试我的API集

import app from '../index'
import chai, {expect} from 'chai'
import chaiHttp from 'chai-http'

chai.use(chaiHttp)

describe('----- cloud functions test suite -------'.yellow, function() {

it('should throw an error for firebase auth', function (done) {
chai.request(app)
  .post('/parse/functions/getfirebasetoken')
  .set('Accept', 'application/json')
  .set('X-Parse-Application-Id', 'sendjob')
  .end(function (err, res) {
    expect(res.statusCode).to.equal(200)
    done();
  })
 })
})

我的测试停止执行,而不是显示测试因Assertion错误而失败。这是截图

screenshot

0 个答案:

没有答案