chai-oequal:使用对象的相等方法而不是 === 提供 oequal() 方法的 Chai 插件

时间:2024-07-08 12:32:29
【文件属性】:

文件名称:chai-oequal:使用对象的相等方法而不是 === 提供 oequal() 方法的 Chai 插件

文件大小:5KB

文件格式:ZIP

更新时间:2024-07-08 12:32:29

JavaScript

柴平等 插件,它为具有自定义相等概念的对象定义了oequal()方法。 概述 假设您的对象知道如何比较自己: function A ( ) { } A . prototype . equals = function ( other ) { return true ; } 那么你可以缩短以下内容: a1 . should . be . an . instanceof ( A ) ; a1 . equals ( a2 ) . should . be . true ; 作为: a1 . should . oequal ( a2 ) ; 安装使用 使用安装: npm install chai-oequal --save-dev 并与使用: var chai = require ( 'chai' ) , oequal = require ( 'oequal' ) ;


【文件预览】:
chai-oequal-master
----README.rst(1KB)
----chai-oequal.js(1KB)
----package.json(948B)
----tests()
--------chai-oequal.js(2KB)
----.gitignore(28B)
----karma.conf.js(347B)
----.jshintrc(217B)
----LICENSE.txt(1KB)

网友评论