-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: update plugin to be compatible with Cypress 10. #23
base: master
Are you sure you want to change the base?
Conversation
BREAKING CHANGE: updates config for Cypress 10 and updates plugin to use es6 import/exports.
@@ -1,6 +1,7 @@ | |||
{ | |||
"name": "cypress-log-to-output", | |||
"version": "1.1.2", | |||
"type": "module", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this change required for 10.0?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think so. I added it so that I could use ES import
instead of require
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Desperately need the v10 support, any chance this can be merged in?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@flotwig Wanna maybe deprecate in favor of https://github.com/archfz/cypress-terminal-report ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I also need the v10 support!
I have found that the plugin still works OK (10.6.0) without any changes UNLESS you have a plugin after it that also adds a listener to before:browser:launch afterwards. Dunno if this is an issue with Cypress or not. |
BREAKING CHANGE: updates config for Cypress 10 and updates plugin to use es6 import/exports.
Closes #22