如何断言不为空?

时间:2015-04-06 03:14:18

标签: javascript node.js mocha

我是javascript测试的新手,我想知道如何在 Mocha 框架中断言not null。

3 个答案:

答案 0 :(得分:61)

Mocha支持您想要的任何断言库。您可以在这里查看它如何处理断言:http://mochajs.org/#assertions。我不知道你想用哪一个。

考虑到您使用的Chai非常受欢迎,以下是一些选项:

  

将“foo”视为您要测试的目标变量

断言

var assert = chai.assert;
assert(foo) // will pass for any truthy value (!= null,!= undefined,!= '',!= 0)
// or
assert(foo != null)
// or
assert.notEqual(foo, null);

如果您想使用assert,您甚至不需要Chai。只是使用它。 Node本身支持它:https://nodejs.org/api/assert.html#assert_assert

应该

var should = require('chai').should();
should.exist(foo); // will pass for not null and not undefined
// or
should.not.equal(foo, null);

期望

var expect = chai.expect;
expect(foo).to.not.equal(null);
// or
expect(foo).to.not.be.null;

答案 1 :(得分:1)

这对我有用(使用 Expect Mocha ):

expect(myObject).toExist('Too bad when it does not.');

答案 2 :(得分:0)

以防万一,除了摩卡咖啡,您还使用Chai:

assert.isNotNull(tea, 'great, time for tea!');