Skip to content

Commit

Permalink
Test script: removing test because of confirmation window
Browse files Browse the repository at this point in the history
  • Loading branch information
gusthoff committed Sep 8, 2024
1 parent b113cb3 commit 694135e
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions frontend/tests/ts/widget.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 694135e

Please sign in to comment.