Skip to content

Instantly share code, notes, and snippets.

@joegaudet
Last active June 23, 2020 21:28
Show Gist options
  • Save joegaudet/cb10559dcf39dba1621b83c0e6a33b0d to your computer and use it in GitHub Desktop.
Save joegaudet/cb10559dcf39dba1621b83c0e6a33b0d to your computer and use it in GitHub Desktop.
Cypress.Commands.add("settleAppPromises", () => {
return cy.window()
.then(win => cy.waitUntil(() => win.SwiftFox.__container__.lookup('service:settledPromiseQueue').isEmpty));
});
Cypress.Commands.overwrite('click', (originalFn) => {
cy.settleAppPromises();
return originalFn();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment