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
Currently it seems that symbols are simply ignored. Is this intended behavior? Wouldn't it make more sense to check them too? I would certainly appreciate it.
MWE:
// Object.assign() assigns symbols so this test should fail but it passes.test(Object.assign,(): void=>{constSYMBOL_KEY=Symbol("key");given({},{[SYMBOL_KEY]: true}).expect({});});
The text was updated successfully, but these errors were encountered:
That seems reasonable. I haven't looked at this part of the code in a while (if ever!) and I'm not sure how the expectations are implemented. I imagine they are mostly delegated though I'm not sure.
Currently it seems that symbols are simply ignored. Is this intended behavior? Wouldn't it make more sense to check them too? I would certainly appreciate it.
MWE:
The text was updated successfully, but these errors were encountered: