2020-12-22 15:45:11 -05:00
|
|
|
/*
|
2022-06-08 07:19:51 -04:00
|
|
|
* SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
2020-12-22 15:45:11 -05:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-01-30 15:46:43 -05:00
|
|
|
import { PAGE_MODE } from '../support/visit'
|
|
|
|
|
2020-12-22 15:45:11 -05:00
|
|
|
describe('Editor mode from URL parameter is used', () => {
|
|
|
|
it('mode view', () => {
|
2022-01-30 15:46:43 -05:00
|
|
|
cy.visitTestNote(PAGE_MODE.EDITOR, 'view')
|
2022-04-03 10:45:30 -04:00
|
|
|
cy.getByCypressId('editor-pane').should('not.be.visible')
|
|
|
|
cy.getByCypressId('documentIframe').should('be.visible')
|
2020-12-22 15:45:11 -05:00
|
|
|
})
|
|
|
|
it('mode both', () => {
|
2022-01-30 15:46:43 -05:00
|
|
|
cy.visitTestNote(PAGE_MODE.EDITOR, 'both')
|
2022-04-03 10:45:30 -04:00
|
|
|
cy.getByCypressId('editor-pane').should('be.visible')
|
|
|
|
cy.getByCypressId('documentIframe').should('be.visible')
|
2020-12-22 15:45:11 -05:00
|
|
|
})
|
|
|
|
it('mode edit', () => {
|
2022-01-30 15:46:43 -05:00
|
|
|
cy.visitTestNote(PAGE_MODE.EDITOR, 'edit')
|
2022-04-03 10:45:30 -04:00
|
|
|
cy.getByCypressId('editor-pane').should('be.visible')
|
|
|
|
cy.getByCypressId('documentIframe').should('not.be.visible')
|
2020-12-22 15:45:11 -05:00
|
|
|
})
|
|
|
|
})
|