为什么我的mocha/chai错误投掷测试失败

Why is my mocha/chai Error throwing test failing?

本文关键字:测试 失败 错误 chai 我的 mocha 为什么      更新时间:2023-09-26

我正在尝试测试一个简单的javascript包。我想检查是否抛出了错误,但当我的测试运行并且抛出错误时,测试被标记为失败。

这是代码:

var should = require('chai').should(),
    expect = require('chai').expect();
describe('#myTestSuite', function () {
    it ('should check for TypeErrors', function () {
        // Pulled straight from the 'throw' section of
        // http://chaijs.com/api/bdd/
        var err = new ReferenceError('This is a bad function.');
        var fn = function () { throw err; }
        expect(fn).to.throw(ReferenceError);
    })
})

当运行时,它会给我以下输出:

kh:testthing khrob$ npm test
> testthing@0.1.0 test /Users/khrob/testthing
> mocha

  #myTestSuite
    1) should check for TypeErrors

  0 passing (5ms)   1 failing
  1) #myTestSuite should check for TypeErrors:
     TypeError: object is not a function
      at Context.<anonymous> (/Users/khrob/testthing/test/index.js:10:3)
      at callFn (/Users/khrob/testthing/node_modules/mocha/lib/runnable.js:249:21)
      at Test.Runnable.run (/Users/khrob/testthing/node_modules/mocha/lib/runnable.js:242:7)
      at Runner.runTest (/Users/khrob/testthing/node_modules/mocha/lib/runner.js:373:10)
      at /Users/khrob/testthing/node_modules/mocha/lib/runner.js:451:12
      at next (/Users/khrob/testthing/node_modules/mocha/lib/runner.js:298:14)
      at /Users/khrob/testthing/node_modules/mocha/lib/runner.js:308:7
      at next (/Users/khrob/testthing/node_modules/mocha/lib/runner.js:246:23)
      at Object._onImmediate (/Users/khrob/testthing/node_modules/mocha/lib/runner.js:275:5)
      at processImmediate [as _immediateCallback] (timers.js:336:15)

npm ERR! Test failed.  See above for more details. 
npm ERR! not ok code 0

我知道这里有几十个答案,关于你期望()是一个函数而不是函数的结果,我已经尝试了我能想到的每一种匿名函数化的排列,但我总是得到失败的测试结果。

我认为这一定与我的配置有关,因为我基本上只是从文档中运行示例,或者我对测试通过或失败的预期没有正确校准。

有线索吗?

这应该可以解决您的问题:

var expect = require('chai').expect;

请注意,expect函数没有被调用。

追踪到了!

向上

expect = require('chai').expect(),

没有给我任何有用的东西。更改为:

chai = require('chai'),

然后将测试称为

chai.expect(fn).to.throw(ReferenceError);

做的正是我所期望的。

谢谢你的帮助。