summaryrefslogtreecommitdiffstats
path: root/cypress_test/integration_tests/desktop
diff options
context:
space:
mode:
authorGökay Şatır <gokaysatir@gmail.com>2023-05-10 10:43:10 +0300
committerGökay ŞATIR <gokaysatir@gmail.com>2023-05-10 13:30:37 +0300
commitedeb764958119be62dbb9fecbadf0b30d7de4f27 (patch)
treec1dc8b0087b486cfdc4bf691baf3825579ee80e7 /cypress_test/integration_tests/desktop
parentEnable calc desktop focus spec. (diff)
downloadonline-edeb764958119be62dbb9fecbadf0b30d7de4f27.tar.gz
online-edeb764958119be62dbb9fecbadf0b30d7de4f27.zip
Enable desktop calc add-delete decimal places spec.
Signed-off-by: Gökay Şatır <gokaysatir@gmail.com> Change-Id: I6d665c7e7561f5096b5b860f5a8cdea5a86e2b00
Diffstat (limited to 'cypress_test/integration_tests/desktop')
-rw-r--r--cypress_test/integration_tests/desktop/calc/top_toolbar_spec.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/cypress_test/integration_tests/desktop/calc/top_toolbar_spec.js b/cypress_test/integration_tests/desktop/calc/top_toolbar_spec.js
index a5168eaa0c..ba7c30ef3f 100644
--- a/cypress_test/integration_tests/desktop/calc/top_toolbar_spec.js
+++ b/cypress_test/integration_tests/desktop/calc/top_toolbar_spec.js
@@ -174,11 +174,10 @@ describe(['tagdesktop'], 'Top toolbar tests.', function() {
cy.cGet('#copy-paste-container table td font').should('have.attr', 'color', '#FFF2CC');
});
- it.skip('Add/Delete decimal places', function() {
+ it('Add/Delete decimal places', function() {
// Add decimal place
cy.cGet('#toolbar-up .w2ui-scroll-right').click();
cy.cGet('#tb_editbar_item_numberformatincdecimals').click();
-
calcHelper.selectEntireSheet();
var regex = new RegExp(';0;0.0$');
@@ -192,7 +191,6 @@ describe(['tagdesktop'], 'Top toolbar tests.', function() {
cy.cGet('#tb_editbar_item_numberformatdecdecimals').click();
calcHelper.selectEntireSheet();
-
regex = new RegExp(';0;0$');
cy.cGet('#copy-paste-container table td')
.should('have.attr', 'sdnum')