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
Everytime code coverage is sent back to the node process (?), the stringified object is logged with its arguments, ref. https://github.com/cypress-io/code-coverage/blob/v1.10.2/support.js#L26. In my case, this is a 16839123-character long string and the rendering of this makes the runner unbearably slow.
Now, I realize that logging is a desired side-effect - maybe the logger itself should be able to cut obscenely large arguments?
In the meanwhile, I'm using patch-package with the following patch.
Everytime code coverage is sent back to the node process (?), the stringified object is logged with its arguments, ref. https://github.com/cypress-io/code-coverage/blob/v1.10.2/support.js#L26. In my case, this is a 16839123-character long string and the rendering of this makes the runner unbearably slow.
Now, I realize that logging is a desired side-effect - maybe the logger itself should be able to cut obscenely large arguments?
In the meanwhile, I'm using patch-package with the following patch.
The text was updated successfully, but these errors were encountered: