From 694135e592e6e1211a58db9ecd45083a52dec7cb Mon Sep 17 00:00:00 2001 From: gusthoff Date: Sun, 8 Sep 2024 06:20:32 +0200 Subject: [PATCH] Test script: removing test because of confirmation window --- frontend/tests/ts/widget.spec.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/frontend/tests/ts/widget.spec.ts b/frontend/tests/ts/widget.spec.ts index 301515c76..249c4dbf6 100644 --- a/frontend/tests/ts/widget.spec.ts +++ b/frontend/tests/ts/widget.spec.ts @@ -404,15 +404,6 @@ describe('Widget', () => { editor = ace.edit(editorDiv); }); - it('should have a checkbox that switches editor theme', () => { - const box = getElemById(root.id + '.settings-bar.theme-setting') as - HTMLInputElement; - const origTheme = editor.getTheme(); - box.checked = !box.checked; - triggerEvent(box, 'change'); - expect(editor.getTheme()).to.not.equal(origTheme); - }); - it('should have a checkbox that switches tab setting', () => { const nonTabbedEditorDiv: HTMLElement = getElemById(root.id + '.editors.non-tabbed-editor'); const box = getElemById(root.id + '.settings-bar.tab-setting') as