diff --git a/cypress/e2e/documentTitle.spec.ts b/cypress/e2e/documentTitle.spec.ts index f450237d4..8db4821f7 100644 --- a/cypress/e2e/documentTitle.spec.ts +++ b/cypress/e2e/documentTitle.spec.ts @@ -10,7 +10,6 @@ const title = 'This is a test title' describe('Document Title', () => { beforeEach(() => { cy.visitTestNote() - cy.getByCypressId('view-mode-both').should('exist') }) describe('title should be yaml metadata title', () => { diff --git a/cypress/e2e/editorMode.spec.ts b/cypress/e2e/editorMode.spec.ts deleted file mode 100644 index a1f70adb2..000000000 --- a/cypress/e2e/editorMode.spec.ts +++ /dev/null @@ -1,25 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file) - * - * SPDX-License-Identifier: AGPL-3.0-only - */ - -import { PAGE_MODE } from '../support/visit' - -describe('Editor mode from URL parameter is used', () => { - it('mode view', () => { - cy.visitTestNote(PAGE_MODE.EDITOR, 'view') - cy.getByCypressId('editor-pane').should('not.be.visible') - cy.getByCypressId('documentIframe').should('be.visible') - }) - it('mode both', () => { - cy.visitTestNote(PAGE_MODE.EDITOR, 'both') - cy.getByCypressId('editor-pane').should('be.visible') - cy.getByCypressId('documentIframe').should('be.visible') - }) - it('mode edit', () => { - cy.visitTestNote(PAGE_MODE.EDITOR, 'edit') - cy.getByCypressId('editor-pane').should('be.visible') - cy.getByCypressId('documentIframe').should('not.be.visible') - }) -}) diff --git a/src/components/editor-page/app-bar/app-bar.tsx b/src/components/editor-page/app-bar/app-bar.tsx index 9c5d3fbcf..7d8f35b7a 100644 --- a/src/components/editor-page/app-bar/app-bar.tsx +++ b/src/components/editor-page/app-bar/app-bar.tsx @@ -10,7 +10,6 @@ import { ShowIf } from '../../common/show-if/show-if' import { SignInButton } from '../../landing-layout/navigation/sign-in-button' import { UserDropdown } from '../../landing-layout/navigation/user-dropdown' import { DarkModeButton } from './dark-mode-button' -import { EditorViewMode } from './editor-view-mode' import { HelpButton } from './help-button/help-button' import { NavbarBranding } from './navbar-branding' import { SyncScrollButtons } from './sync-scroll-buttons/sync-scroll-buttons' @@ -43,7 +42,6 @@ export const AppBar: React.FC = ({ mode }) => {