cypress_test/integration_tests/mobile/writer/mobile_wizard_state_spec.js | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-)
New commits: commit 6114b8c8cef37ec517a7b5c8fb47fd144d7ad03a Author: Tamás Zolnai <[email protected]> AuthorDate: Wed Mar 4 20:18:30 2020 +0100 Commit: Tamás Zolnai <[email protected]> CommitDate: Wed Mar 4 21:10:13 2020 +0100 cypress: mobile: enable some mobile wizard's state related checks. Change-Id: I0bf19450f14e8e8d99e1a103558499d53f21f760 Reviewed-on: https://gerrit.libreoffice.org/c/online/+/89995 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Tamás Zolnai <[email protected]> diff --git a/cypress_test/integration_tests/mobile/writer/mobile_wizard_state_spec.js b/cypress_test/integration_tests/mobile/writer/mobile_wizard_state_spec.js index 676eb2703..47790dc47 100644 --- a/cypress_test/integration_tests/mobile/writer/mobile_wizard_state_spec.js +++ b/cypress_test/integration_tests/mobile/writer/mobile_wizard_state_spec.js @@ -45,9 +45,8 @@ describe('Mobile wizard state tests', function() { .click(); // Mobile wizard is opened and it has any content - // TODO: fix this bug - /*cy.get('#mobile-wizard-content') - .should('not.be.empty'); */ + cy.get('#mobile-wizard-content') + .should('not.be.empty'); cy.get('#tb_actionbar_item_mobile_wizard table') .should('have.class', 'checked'); }); @@ -82,9 +81,8 @@ describe('Mobile wizard state tests', function() { cy.get('#tb_actionbar_item_mobile_wizard') .click(); - // TODO: fix this bug - //cy.get('#mobile-wizard-content') - // .should('not.be.empty'); + cy.get('#mobile-wizard-content') + .should('not.be.empty'); cy.get('#tb_actionbar_item_mobile_wizard table') .should('have.class', 'checked'); }); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
