-
Notifications
You must be signed in to change notification settings - Fork 919
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#4246 Add option to select reviewers from last round #3331
Conversation
…ale 'reviewer.list.reassign')
|
@NateWr, it looks like this submodule update broke tests. |
^ yep, here's a temporary work-around for pkp-lib: diff --git a/cypress/support/commands.js b/cypress/support/commands.js
index 02464a43f..137c68f41 100644
--- a/cypress/support/commands.js
+++ b/cypress/support/commands.js
@@ -458,7 +458,7 @@ Cypress.Commands.add('checkEmailTemplateVariables', (selector) => {
* @param string selector An HTML element selector for a parent element that contains the email composer to check
*/
Cypress.Commands.add('waitForEmailTemplateToBeLoaded', (selector) => {
- cy.get(selector);
+ cy.wait(4000); // FIXME: Should be `cy.get(selector);` but the selector is currently missing
cy.get(selector + ' .composer__loadingTemplateMask').should('not.exist');
}); |
Problems I'm experiencing so far:
get div.pkpStatsgraph table tbody tr th:contains("January 29, 2022")
log January 29, 2022
get div.pkpStatsgraph table tbody tr th:contains("January 30, 2022")
log January 30, 2022
get div.pkpStatsgraph table tbody tr th:contains("January 31, 2022")
log January 31, 2022
get div.pkpStatsgraph table tbody tr th:contains("February 1, 2022") |
Are these test failures happening on Travis or just locally? The tests passed on this PR before I merged. |
Yes, and it's weird. According to the commit history, they are failing after this commit: 27933b0, e.g.: https://app.travis-ci.com/github/pkp/ojs/jobs/563738700 and I can reproduce it locally. |
I see the problem. Working on a fix now: pkp/pkp-lib#7768 (comment) |
This was actually due to a work-around for a problem that went away with the move from |
No description provided.