6

我正在使用 Mocha 运行单元测试,而不是在报告器中显示所有抛出的 AssertionErrors,Mocha 在第一个错误时崩溃。有什么建议么?

我在崩溃时遇到的错误是:

/Users/Robert/Code/JRJ/Server/node_modules/chai/lib/chai/assertion.js:106
      throw new AssertionError(msg, {
            ^
AssertionError: expected 200 to equal 202
npm ERR! weird error 8
npm ERR! not ok code 0

无论我使用 Chai 还是内置的 assert 库,都是一样的。我用这个命令运行 Mocha(我用 运行它npm test):

mocha --reporter 'spec' --recursive

我正在使用的库版本是:

  • 节点:0.10.18
  • 摩卡:1.12.0
  • 柴:1.8.0
  • 哈皮:1.10.0

测试代码:

    var hapi = require('hapi'),
        expect = require('chai').expect,
        assert = require('assert');

    describe("Customer API", function(){
      var server = require('../../../../src/apis/customer');

      //works as expected 
      describe('simpleExample', function(){
        it("should cause a test failure", function(done){
            expect(200).to.equal(202);
            done();
        });
      });

      //crashes Mocha
      describe('Authentication', function(){
        it('Should get user token', function(done){
          server.inject("/auth?username=test@test.com&password=testa", function(res){
            expect(res.statusCode).to.equal(202); //returns 200, crashes Mocha (the expected 202 is intentional to cause an assertion error)
            //assert.ok(res.statusCode === 202);
            expect(res.payload).to.be.a('string');
            expect(res.payload).to.have.length(16);
            done();
          });
        });
      });
    });
4

1 回答 1

3

这是因为这是 Mocha 的工作方式。异步调用中的异常需要被捕获并传递给 done 回调,这甚至包括 AssertionErrors。Mocha 文档中有一个错误,我已经打开了一个 GitHub 问题来解决这个问题(https://github.com/visionmedia/mocha/issues/982)。

于 2013-09-24T11:11:14.623 回答