summaryrefslogtreecommitdiffstats
path: root/cypress_test/integration_tests/desktop/calc
diff options
context:
space:
mode:
authorSzymon Kłos <szymon.klos@collabora.com>2022-04-19 06:45:10 +0200
committerSzymon Kłos <eszkadev@gmail.com>2022-04-23 10:58:55 +0200
commitcbde6f324a22df4f84214a17999fd70cdb189964 (patch)
treebb339907e862fd527fd4787721e9f8b32dc6f00b /cypress_test/integration_tests/desktop/calc
parentformulabar: keep correct focus state (diff)
downloadonline-cbde6f324a22df4f84214a17999fd70cdb189964.tar.gz
online-cbde6f324a22df4f84214a17999fd70cdb189964.zip
cypress: tunneled formulabar was removed
Signed-off-by: Szymon Kłos <szymon.klos@collabora.com> Change-Id: I040bbc8c9a5c76a367de046acf2a05e6dfb88920
Diffstat (limited to 'cypress_test/integration_tests/desktop/calc')
-rw-r--r--cypress_test/integration_tests/desktop/calc/tunneled_dialog_spec.js28
1 files changed, 0 insertions, 28 deletions
diff --git a/cypress_test/integration_tests/desktop/calc/tunneled_dialog_spec.js b/cypress_test/integration_tests/desktop/calc/tunneled_dialog_spec.js
deleted file mode 100644
index dd5766d36e..0000000000
--- a/cypress_test/integration_tests/desktop/calc/tunneled_dialog_spec.js
+++ /dev/null
@@ -1,28 +0,0 @@
-/* global describe it cy beforeEach require afterEach */
-
-var helper = require('../../common/helper');
-
-describe('LOK tunnelled dialog tests', function() {
- var origTestFileName = 'tunneled_dialog.ods';
- var testFileName;
-
- beforeEach(function() {
- testFileName = helper.beforeAll(origTestFileName, 'calc');
- });
-
- afterEach(function() {
- helper.afterAll(testFileName, this.currentTest.state);
- });
-
- it('Keep LOK dialog open during closing document.', function() {
- cy.get('#tb_editbar_item_setborderstyle')
- .click();
-
- cy.get('.w2ui-tb-image.w2ui-icon.frame13')
- .click();
-
- cy.get('.lokdialog')
- .should('exist');
- });
-
-});