I was getting the error PrettyFormatPluginError: Invalid Chai property: $$typeof
, and in my case it was due to a "naked" assertion:
expect(fn).toHaveBeenCalledTimes(1);
expect(fn) // <-- missing something afterwards
...
It's an old project, they may have changed the error message to a more meaningful one