文件名称:chai-deep-match:通过对深度匹配的对象的断言扩展Chai(即子集相等性检查)
文件大小:28KB
文件格式:ZIP
更新时间:2024-06-12 05:17:31
JavaScript
柴深比赛 通过对深度匹配的对象(即子集相等性检查)的断言扩展 。 安装 $ npm install --save chai $ npm install --save chai-deep-match 用法 var chai = require ( 'chai' ) ; var chaiDeepMatch = require ( 'chai-deep-match' ) ; chai . use ( chaiDeepMatch ) ; chai . expect ( { a : 'foo' , b : 'bar' , c : 'baz' } ) . to . deep . match ( { a : 'foo' , c : 'baz' } ) ; // => pass chai . expect ( { a : 'foo' , b : 'bar' , c : 'baz' } ) . to
【文件预览】:
chai-deep-match-master
----.jshintrc(1KB)
----.gitignore(690B)
----package.json(2KB)
----package-lock.json(68KB)
----.travis.yml(142B)
----Gruntfile.js(4KB)
----LICENSE(1KB)
----index.js(3KB)
----README.md(2KB)
----.npmignore(320B)
----test()
--------_bootstrap()
--------index.spec.js(9KB)