-
Notifications
You must be signed in to change notification settings - Fork 48
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
pkp/pkp-lib#10874 Remove submission stage from roles installation #858
base: main
Are you sure you want to change the base?
Conversation
|
5206205
to
0089c22
Compare
0089c22
to
cec140a
Compare
cec140a
to
2ce5460
Compare
@@ -45,5 +45,7 @@ module.exports = defineConfig({ | |||
experimentalRunAllSpecs: true, | |||
}, | |||
// Allow cypress to interact with iframes | |||
chromeWebSecurity: false | |||
chromeWebSecurity: false, | |||
viewportWidth: 3024, |
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.
Viewport dimensions appear to be related to test failures. Because of the new UI, especially for the submission workflow page, often it's not enough screen width and/or height to press a button, because it requires scrolling, e.g., to post a submission. scrollIntoView
doesn't work reliably in my case. I think this way we can avoid forcing
a button click, which we do in several places.
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.
Looks good -- thanks, @Vitaliy-1!
No description provided.