hedgedoc/cypress/integration/link.spec.ts
Tilman Vatteroth ca5dae3f82 Add new visit functions in e2e tests
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
2022-01-30 22:13:41 +01:00

54 lines
1.3 KiB
TypeScript

/*
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
import '../support/index'
describe('Links Intro', () => {
beforeEach(() => {
cy.visitHome()
})
it('History', () => {
cy.getByCypressId('navLinkHistory').click()
cy.url().should('include', '/history')
cy.getByCypressId('navLinkIntro').click()
cy.url().should('include', '/intro')
})
describe('Menu Buttons logged out', () => {
beforeEach(() => {
cy.logout()
})
it('New guest note', () => {
cy.getByCypressId('new-guest-note-button').click()
cy.url().should('include', '/new')
})
})
describe('Menu Buttons logged in', () => {
it('New note', () => {
cy.getByCypressId('new-note-button').click()
cy.url().should('include', '/new')
})
describe('User Menu', () => {
beforeEach(() => {
cy.getByCypressId('user-dropdown').click()
})
it('Features', () => {
cy.getByCypressId('user-dropdown-features-button').click()
cy.url().should('include', '/features')
})
it('Profile', () => {
cy.getByCypressId('user-dropdown-profile-button').click()
cy.url().should('include', '/profile')
})
})
})
})