Results 5 comments of Justin Winslow

Cool. I'll check it out when I get some time. I guess just as an FYI, I got around this issue with a stop word filter: ``` var customStopwordFilter =...

We could do something like: ```javascript const version = +React.version.split('.')[0]; if (version > 18) { expect(selector).toHaveBeenCalledTimes(2); } else { expect(selector).toHaveBeenCalledTimes(withStrict(2)); } ``` We could add the version check to utils...