Disable testing of splitting table cells
- The split cells test currently uses tunneled dialogs to make sure that we can split table cells - There is an open gerrit review to switch the split cells dialog to JSDialogs (https://gerrit.libreoffice.org/c/core/+/137791) which is blocked because the tunneled dialog needs to be removed in it, and that fails this test - This test needs to be temporarily disabled to give coreside a chance to merge that review and build a new version of the libreoffice archive. Once that has happened, this test should be replaced with a rewritten version Signed-off-by: Skyler Grey <skyler3665@gmail.com> Change-Id: I0bb51e3cdbc04020e03c8d87696d014a0f693554
This commit is contained in:
parent
cff30c51d5
commit
3ce47b0c16
1 changed files with 4 additions and 2 deletions
|
@ -312,7 +312,7 @@ describe('Table operations', function() {
|
|||
.should('have.attr', 'width', '50%');
|
||||
});
|
||||
|
||||
it('Split Cells', function() {
|
||||
/*it('Split Cells', function() {
|
||||
helper.typeIntoDocument('{downarrow}');
|
||||
|
||||
helper.typeIntoDocument('{ctrl}{a}');
|
||||
|
@ -346,5 +346,7 @@ describe('Table operations', function() {
|
|||
|
||||
cy.get('#copy-paste-container tbody').find('tr')
|
||||
.should('have.length', 4);
|
||||
});
|
||||
});*/
|
||||
// TODO: Rewrite this test to use the new JSDialogs dialog as opposed to this tunneled dialog
|
||||
// Blocked by https://gerrit.libreoffice.org/c/core/+/137791
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue