summaryrefslogtreecommitdiffstats
path: root/cypress_test/integration_tests/desktop/calc
diff options
context:
space:
mode:
authorGökay Şatır <gokaysatir@gmail.com>2023-05-04 11:04:38 +0300
committerGökay ŞATIR <gokaysatir@gmail.com>2023-05-05 07:07:14 +0300
commit9148b57ef4976a730ad0c79d9d9e87212f8a5843 (patch)
treebc37f7acb0c2b9d2d538ac6a3f689bc9eafead52 /cypress_test/integration_tests/desktop/calc
parentAdd specpattern to desktop tests. (diff)
downloadonline-9148b57ef4976a730ad0c79d9d9e87212f8a5843.tar.gz
online-9148b57ef4976a730ad0c79d9d9e87212f8a5843.zip
Add desktop tags to relevant tests.
Signed-off-by: Gökay Şatır <gokaysatir@gmail.com> Change-Id: Id0e2a335c82e253eb97e647254ef32e2a18dcd89
Diffstat (limited to 'cypress_test/integration_tests/desktop/calc')
-rw-r--r--cypress_test/integration_tests/desktop/calc/annotation_spec.js2
-rw-r--r--cypress_test/integration_tests/desktop/calc/autofilter_spec.js2
-rw-r--r--cypress_test/integration_tests/desktop/calc/bottom_bar_spec.js2
-rw-r--r--cypress_test/integration_tests/desktop/calc/cell_appearance_spec.js2
-rw-r--r--cypress_test/integration_tests/desktop/calc/delete_objects_spec.js2
-rw-r--r--cypress_test/integration_tests/desktop/calc/focus_spec.js2
-rw-r--r--cypress_test/integration_tests/desktop/calc/help_dialog_update_spec.js2
-rw-r--r--cypress_test/integration_tests/desktop/calc/image_operation_spec.js2
-rw-r--r--cypress_test/integration_tests/desktop/calc/macro_spec.js2
-rw-r--r--cypress_test/integration_tests/desktop/calc/open_different_file_types_spec.js2
-rw-r--r--cypress_test/integration_tests/desktop/calc/row_column_operation_spec.js2
-rw-r--r--cypress_test/integration_tests/desktop/calc/scrolling_spec.js2
-rw-r--r--cypress_test/integration_tests/desktop/calc/searchbar_spec.js2
-rw-r--r--cypress_test/integration_tests/desktop/calc/sheet_operation_spec.js2
-rw-r--r--cypress_test/integration_tests/desktop/calc/sidebar_dialog_image_caching_spec.js2
-rw-r--r--cypress_test/integration_tests/desktop/calc/statusbar_spec.js2
-rw-r--r--cypress_test/integration_tests/desktop/calc/top_toolbar_spec.js2
-rw-r--r--cypress_test/integration_tests/desktop/calc/undo_redo_spec.js2
18 files changed, 18 insertions, 18 deletions
diff --git a/cypress_test/integration_tests/desktop/calc/annotation_spec.js b/cypress_test/integration_tests/desktop/calc/annotation_spec.js
index f574487406..e173bfa1d5 100644
--- a/cypress_test/integration_tests/desktop/calc/annotation_spec.js
+++ b/cypress_test/integration_tests/desktop/calc/annotation_spec.js
@@ -3,7 +3,7 @@
var helper = require('../../common/helper');
var { insertMultipleComment } = require('../../common/desktop_helper');
-describe('Annotation Tests', function() {
+describe(['tagdesktop'], 'Annotation Tests', function() {
var origTestFileName = 'annotation.ods';
var testFileName;
diff --git a/cypress_test/integration_tests/desktop/calc/autofilter_spec.js b/cypress_test/integration_tests/desktop/calc/autofilter_spec.js
index d4a1e840bf..f196643857 100644
--- a/cypress_test/integration_tests/desktop/calc/autofilter_spec.js
+++ b/cypress_test/integration_tests/desktop/calc/autofilter_spec.js
@@ -3,7 +3,7 @@
var helper = require('../../common/helper');
var calcHelper = require('../../common/calc_helper');
-describe('AutoFilter', function() {
+describe(['tagdesktop'], 'AutoFilter', function() {
var origTestFileName = 'autofilter.ods';
var testFileName;
diff --git a/cypress_test/integration_tests/desktop/calc/bottom_bar_spec.js b/cypress_test/integration_tests/desktop/calc/bottom_bar_spec.js
index 1d85f1d75e..12e250eb5b 100644
--- a/cypress_test/integration_tests/desktop/calc/bottom_bar_spec.js
+++ b/cypress_test/integration_tests/desktop/calc/bottom_bar_spec.js
@@ -4,7 +4,7 @@ var helper = require('../../common/helper');
var calcHelper = require('../../common/calc_helper');
var desktophelper = require('../../common/desktop_helper');
-describe('Calc bottom bar tests.', function() {
+describe(['tagdesktop'], 'Calc bottom bar tests.', function() {
var origTestFileName = 'BottomBar.ods';
var testFileName;
diff --git a/cypress_test/integration_tests/desktop/calc/cell_appearance_spec.js b/cypress_test/integration_tests/desktop/calc/cell_appearance_spec.js
index fabc51d620..80bdf620f8 100644
--- a/cypress_test/integration_tests/desktop/calc/cell_appearance_spec.js
+++ b/cypress_test/integration_tests/desktop/calc/cell_appearance_spec.js
@@ -4,7 +4,7 @@ var helper = require('../../common/helper');
var calcHelper = require('../../common/calc_helper');
var desktopHelper = require('../../common/desktop_helper');
-describe('Change cell appearance.', function() {
+describe(['tagdesktop'], 'Change cell appearance.', function() {
var origTestFileName = 'cell_appearance.ods';
var testFileName;
diff --git a/cypress_test/integration_tests/desktop/calc/delete_objects_spec.js b/cypress_test/integration_tests/desktop/calc/delete_objects_spec.js
index 92a60a929d..aa501b192c 100644
--- a/cypress_test/integration_tests/desktop/calc/delete_objects_spec.js
+++ b/cypress_test/integration_tests/desktop/calc/delete_objects_spec.js
@@ -2,7 +2,7 @@
var helper = require('../../common/helper');
-describe('Delete Objects', function() {
+describe(['tagdesktop'], 'Delete Objects', function() {
var origTestFileName = 'delete_objects.ods';
var testFileName;
diff --git a/cypress_test/integration_tests/desktop/calc/focus_spec.js b/cypress_test/integration_tests/desktop/calc/focus_spec.js
index 6d402714c7..0d3417611e 100644
--- a/cypress_test/integration_tests/desktop/calc/focus_spec.js
+++ b/cypress_test/integration_tests/desktop/calc/focus_spec.js
@@ -3,7 +3,7 @@
var helper = require('../../common/helper');
var calcHelper = require('../../common/calc_helper');
-describe('Calc focus tests', function() {
+describe(['tagdesktop'], 'Calc focus tests', function() {
var origTestFileName = 'focus.ods';
var testFileName;
diff --git a/cypress_test/integration_tests/desktop/calc/help_dialog_update_spec.js b/cypress_test/integration_tests/desktop/calc/help_dialog_update_spec.js
index e18a0b4796..cb7833ac70 100644
--- a/cypress_test/integration_tests/desktop/calc/help_dialog_update_spec.js
+++ b/cypress_test/integration_tests/desktop/calc/help_dialog_update_spec.js
@@ -8,7 +8,7 @@
var helper = require('../../common/helper');
var calcHelper = require('../../common/calc_helper');
-describe('Help dialog update', function() {
+describe(['tagdesktop'], 'Help dialog update', function() {
var testFileName = 'help_dialog.ods';
beforeEach(function() {
diff --git a/cypress_test/integration_tests/desktop/calc/image_operation_spec.js b/cypress_test/integration_tests/desktop/calc/image_operation_spec.js
index ec70f0026b..0f0e213844 100644
--- a/cypress_test/integration_tests/desktop/calc/image_operation_spec.js
+++ b/cypress_test/integration_tests/desktop/calc/image_operation_spec.js
@@ -3,7 +3,7 @@
var helper = require('../../common/helper');
var { insertImage, deleteImage, assertImageSize } = require('../../common/desktop_helper');
-describe('Image Operation Tests', function() {
+describe(['tagdesktop'], 'Image Operation Tests', function() {
var origTestFileName = 'image_operation.ods';
var testFileName;
diff --git a/cypress_test/integration_tests/desktop/calc/macro_spec.js b/cypress_test/integration_tests/desktop/calc/macro_spec.js
index ef847d45f0..16ac09d3b4 100644
--- a/cypress_test/integration_tests/desktop/calc/macro_spec.js
+++ b/cypress_test/integration_tests/desktop/calc/macro_spec.js
@@ -3,7 +3,7 @@
var helper = require('../../common/helper');
var calcHelper = require('../../common/calc_helper');
-describe('macro dialog tests', function() {
+describe(['tagdesktop'], 'macro dialog tests', function() {
var testFileName = 'macro.ods';
function acceptMacroExecution() {
diff --git a/cypress_test/integration_tests/desktop/calc/open_different_file_types_spec.js b/cypress_test/integration_tests/desktop/calc/open_different_file_types_spec.js
index 8a487cc646..b5dcc1944e 100644
--- a/cypress_test/integration_tests/desktop/calc/open_different_file_types_spec.js
+++ b/cypress_test/integration_tests/desktop/calc/open_different_file_types_spec.js
@@ -3,7 +3,7 @@ var helper = require('../../common/helper');
var calcHelper = require('../../common/calc_helper');
const { insertImage } = require('../../common/desktop_helper');
-describe('Open different file types', function () {
+describe(['tagdesktop'], 'Open different file types', function () {
var testFileName = '';
diff --git a/cypress_test/integration_tests/desktop/calc/row_column_operation_spec.js b/cypress_test/integration_tests/desktop/calc/row_column_operation_spec.js
index 94d3ecf928..ae1d546e43 100644
--- a/cypress_test/integration_tests/desktop/calc/row_column_operation_spec.js
+++ b/cypress_test/integration_tests/desktop/calc/row_column_operation_spec.js
@@ -3,7 +3,7 @@ var helper = require('../../common/helper');
var calcHelper = require('../../common/calc_helper');
var mode = Cypress.env('USER_INTERFACE');
-describe('Row Column Operation', function() {
+describe(['tagdesktop'], 'Row Column Operation', function() {
var testFileName = 'row_column_operation.ods';
beforeEach(function() {
diff --git a/cypress_test/integration_tests/desktop/calc/scrolling_spec.js b/cypress_test/integration_tests/desktop/calc/scrolling_spec.js
index 3ae7ae09f0..0311e1bcf9 100644
--- a/cypress_test/integration_tests/desktop/calc/scrolling_spec.js
+++ b/cypress_test/integration_tests/desktop/calc/scrolling_spec.js
@@ -3,7 +3,7 @@
var helper = require('../../common/helper');
var desktopHelper = require('../../common/desktop_helper');
-describe('Scroll through document', function() {
+describe(['tagdesktop'], 'Scroll through document', function() {
var testFileName = 'scrolling.ods';
beforeEach(function() {
diff --git a/cypress_test/integration_tests/desktop/calc/searchbar_spec.js b/cypress_test/integration_tests/desktop/calc/searchbar_spec.js
index 02646892f6..4bbce04a70 100644
--- a/cypress_test/integration_tests/desktop/calc/searchbar_spec.js
+++ b/cypress_test/integration_tests/desktop/calc/searchbar_spec.js
@@ -3,7 +3,7 @@
var helper = require('../../common/helper');
var searchHelper = require('../../common/search_helper');
-describe('Searching via search bar.', function() {
+describe(['tagdesktop'], 'Searching via search bar.', function() {
var origTestFileName = 'search_bar.ods';
var testFileName;
diff --git a/cypress_test/integration_tests/desktop/calc/sheet_operation_spec.js b/cypress_test/integration_tests/desktop/calc/sheet_operation_spec.js
index eef6a83f2e..7a524c9dbe 100644
--- a/cypress_test/integration_tests/desktop/calc/sheet_operation_spec.js
+++ b/cypress_test/integration_tests/desktop/calc/sheet_operation_spec.js
@@ -3,7 +3,7 @@
var helper = require('../../common/helper');
var calcHelper = require('../../common/calc_helper');
-describe('Sheet Operations.', function () {
+describe(['tagdesktop'], 'Sheet Operations.', function () {
var origTestFileName = 'sheet_operation.ods';
var testFileName;
diff --git a/cypress_test/integration_tests/desktop/calc/sidebar_dialog_image_caching_spec.js b/cypress_test/integration_tests/desktop/calc/sidebar_dialog_image_caching_spec.js
index 301e141f9d..92ae688aa0 100644
--- a/cypress_test/integration_tests/desktop/calc/sidebar_dialog_image_caching_spec.js
+++ b/cypress_test/integration_tests/desktop/calc/sidebar_dialog_image_caching_spec.js
@@ -2,7 +2,7 @@
var helper = require('../../common/helper');
-describe('Calc sidebar dialog image caching', function() {
+describe(['tagdesktop'], 'Calc sidebar dialog image caching', function() {
var origTestFileName = 'many-sizes.ods';
var testFileName;
diff --git a/cypress_test/integration_tests/desktop/calc/statusbar_spec.js b/cypress_test/integration_tests/desktop/calc/statusbar_spec.js
index f99287a7d1..bd06b38263 100644
--- a/cypress_test/integration_tests/desktop/calc/statusbar_spec.js
+++ b/cypress_test/integration_tests/desktop/calc/statusbar_spec.js
@@ -4,7 +4,7 @@ var helper = require('../../common/helper');
var desktopHelper = require('../../common/desktop_helper');
var calcHelper = require('../../common/calc_helper');
-describe('Statubar tests.', function() {
+describe(['tagdesktop'], 'Statubar tests.', function() {
var origTestFileName = 'statusbar.ods';
var testFileName;
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 004cfc7a72..0c8ca92c33 100644
--- a/cypress_test/integration_tests/desktop/calc/top_toolbar_spec.js
+++ b/cypress_test/integration_tests/desktop/calc/top_toolbar_spec.js
@@ -4,7 +4,7 @@ var helper = require('../../common/helper');
var desktopHelper = require('../../common/desktop_helper');
var calcHelper = require('../../common/calc_helper');
-describe('Top toolbar tests.', function() {
+describe(['tagdesktop'], 'Top toolbar tests.', function() {
var origTestFileName = 'top_toolbar.ods';
var testFileName;
diff --git a/cypress_test/integration_tests/desktop/calc/undo_redo_spec.js b/cypress_test/integration_tests/desktop/calc/undo_redo_spec.js
index 38287f9c9c..fbf69d905b 100644
--- a/cypress_test/integration_tests/desktop/calc/undo_redo_spec.js
+++ b/cypress_test/integration_tests/desktop/calc/undo_redo_spec.js
@@ -4,7 +4,7 @@ var helper = require('../../common/helper');
var calcHelper = require('../../common/calc_helper');
var repairHelper = require('../../common/repair_document_helper');
-describe('Editing Operations', function() {
+describe(['tagdesktop'], 'Editing Operations', function() {
var testFileName = 'undo_redo.ods';
beforeEach(function() {