You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assert(isDeepEqual(a,b),msg||(()=>`Expected values to be deeply equal:\nExpected:\n${JSON.stringify(a,undefined,4)}\nActual:\n${JSON.stringify(b,undefined,4)}`));
52
+
assert(isDeepEqual(a,b),(()=>
53
+
`${msg ? msg+"\n" : ""}Expected values to be deeply equal:\nExpected:\n${stringify(a)}\nActual:\n${stringify(b)}`));
53
54
}
54
55
exportfunctionlengthOf(a: ReadonlyArray<{}>,length: number,msg="Expected length to match."): void{
0 commit comments