mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-23 02:06:29 -05:00
f3bf7cd105
Signed-off-by: Philip Molares <philip.molares@udo.edu>
65 lines
1.5 KiB
TypeScript
65 lines
1.5 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2020 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
/* eslint-disable @typescript-eslint/no-unsafe-call */
|
|
describe('Intro', () => {
|
|
beforeEach(() => {
|
|
cy.visit('/')
|
|
})
|
|
|
|
describe('Cover Button are hidden when logged in', () => {
|
|
it('Sign in Cover Button', () => {
|
|
cy.get('.cover-button.btn-success')
|
|
.should('not.exist')
|
|
})
|
|
|
|
it('Features Cover Button', () => {
|
|
cy.get('.cover-button.btn-primary')
|
|
.should('not.exist')
|
|
})
|
|
})
|
|
|
|
describe('Cover Button are shown when logged out', () => {
|
|
beforeEach(() => {
|
|
cy.logout()
|
|
})
|
|
|
|
it('Sign in Cover Button', () => {
|
|
cy.get('.cover-button.btn-success')
|
|
.should('exist')
|
|
})
|
|
|
|
it('Features Cover Button', () => {
|
|
cy.get('.cover-button.btn-primary')
|
|
.should('exist')
|
|
})
|
|
})
|
|
|
|
describe('Version', () => {
|
|
it('can be opened', () => {
|
|
cy.get('#versionModal')
|
|
.should('not.be.visible')
|
|
cy.get('#version')
|
|
.click()
|
|
cy.get('#versionModal')
|
|
.should('be.visible')
|
|
})
|
|
|
|
it('can be closed', () => {
|
|
cy.get('#versionModal')
|
|
.should('not.be.visible')
|
|
cy.get('#version')
|
|
.click()
|
|
cy.get('#versionModal')
|
|
.should('be.visible')
|
|
cy.get('#versionModal .modal-footer .btn')
|
|
.contains('Close')
|
|
.click()
|
|
cy.get('#versionModal')
|
|
.should('not.be.visible')
|
|
})
|
|
})
|
|
})
|