fix(core): update
This commit is contained in:
parent
465e579298
commit
e0a774852e
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/smartexpect',
|
name: '@push.rocks/smartexpect',
|
||||||
version: '1.0.17',
|
version: '1.0.18',
|
||||||
description: 'manage expectations in code'
|
description: 'manage expectations in code'
|
||||||
}
|
}
|
||||||
|
@ -373,43 +373,7 @@ export class Assertion {
|
|||||||
|
|
||||||
public toMatchObject(objectArg: object) {
|
public toMatchObject(objectArg: object) {
|
||||||
return this.runCheck(() => {
|
return this.runCheck(() => {
|
||||||
function deepEqual(obj1: any, obj2: any): boolean {
|
const partialMatch = plugins.fastDeepEqual(this.getObjectToTestReference(), objectArg); // Note: Implement a deep comparison function or use one from a library
|
||||||
// If both are of primitive types and are equal
|
|
||||||
if (obj1 === obj2) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
// If either of them is null or not an object
|
|
||||||
if (
|
|
||||||
typeof obj1 !== 'object' ||
|
|
||||||
obj1 === null ||
|
|
||||||
typeof obj2 !== 'object' ||
|
|
||||||
obj2 === null
|
|
||||||
) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
const keys1 = Object.keys(obj1);
|
|
||||||
const keys2 = Object.keys(obj2);
|
|
||||||
|
|
||||||
// If their properties' count doesn't match
|
|
||||||
if (keys1.length !== keys2.length) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Checking if every property in obj1 has a counterpart in obj2
|
|
||||||
for (const key of keys1) {
|
|
||||||
if (!keys2.includes(key)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (!deepEqual(obj1[key], obj2[key])) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
const partialMatch = deepEqual(this.getObjectToTestReference(), objectArg); // Note: Implement a deep comparison function or use one from a library
|
|
||||||
if (!partialMatch) {
|
if (!partialMatch) {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
`${this.baseReference} with drill down ${this.propertyDrillDown} does not match the object ${objectArg}`
|
`${this.baseReference} with drill down ${this.propertyDrillDown} does not match the object ${objectArg}`
|
||||||
|
Loading…
Reference in New Issue
Block a user