mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
d10c6d3290
Co-authored-by: Tilman Vatteroth <git@tilmanvatteroth.de> Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de> Signed-off-by: Erik Michelson <github@erik.michelson.eu>
39 lines
1,006 B
TypeScript
39 lines
1,006 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
/* eslint-disable @typescript-eslint/no-unsafe-call */
|
|
describe('Intro page', () => {
|
|
beforeEach(() => {
|
|
cy.intercept('public/intro.md', 'test content')
|
|
cy.visitHome()
|
|
})
|
|
|
|
describe('customizable content', () => {
|
|
it('fetches and shows the correct intro page content', () => {
|
|
cy.getSimpleRendererBody().contains('test content')
|
|
})
|
|
|
|
it("won't show anything if no content was found", () => {
|
|
cy.intercept('public/intro.md', {
|
|
statusCode: 404
|
|
})
|
|
cy.visitHome()
|
|
|
|
cy.getByCypressId('documentIframe').should('not.exist')
|
|
})
|
|
})
|
|
|
|
describe('sign in button', () => {
|
|
it('is hidden when logged in', () => {
|
|
cy.getByCypressId('sign-in-button').should('not.exist')
|
|
})
|
|
|
|
it('is visible when logged out', () => {
|
|
cy.logout()
|
|
cy.getByCypressId('sign-in-button').should('exist')
|
|
})
|
|
})
|
|
})
|