assert.notStrictEqual()详解

Posted lalalagq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了assert.notStrictEqual()详解相关的知识,希望对你有一定的参考价值。

严格不相等测试,由不全等运算符确定(===)。

const assert = require('assert');

assert.notStrictEqual(1, 2);
  // OK

assert.notStrictEqual(1, 1);
  // AssertionError: 1 != 1

assert.notStrictEqual(1, '1');
  // OK

如果这两个值严格相等,将会抛出一个带有 message 属性(等于该 message 参数的值)的 AssertionError。如果 message 参数为 undefined,将会分配一个默认的错误消息。

以上是关于assert.notStrictEqual()详解的主要内容,如果未能解决你的问题,请参考以下文章

搜索引擎系列六:Lucene搜索详解(Lucene搜索流程详解搜索核心API详解基本查询详解QueryParser详解)

linux 操作系统笔记基础命令

决策树原理与Sklearn参数详解

linux打包压缩工具详解

1小时教会你玩转linux 操作系统

ab 命令详解