阅读Node.js assert's module documentation我一直无法理解message
参数的含义,我应该如何使用它。
如果我写一个断言,如:
assert(container.search('asd') === undefined, "Can't find [asd]");
当运行代码时,如果它失败,我只是在断言行得到一个异常,并且看不到消息:
assert.js:86
throw new assert.AssertionError({
^
AssertionError: false == true
at Object.<anonymous> (c:\tests\Container.js:70:1)
at Module._compile (module.js:460:26)
at Object.Module._extensions..js (module.js:478:10)
at Module.load (module.js:355:32)
at Function.Module._load (module.js:310:12)
at Function.Module.runMain (module.js:501:10)
at startup (node.js:129:16)
at node.js:814:3
答案 0 :(得分:1)
message参数只是定义了测试失败时错误消息的内容。这在大多数断言库中都很常见。
示例:
assert(false, 'hello world')
抛出错误
AssertionError: hello world