diff --git a/cypress/integration/link.spec.ts b/cypress/integration/link.spec.ts deleted file mode 100644 index 0052b0ab3..000000000 --- a/cypress/integration/link.spec.ts +++ /dev/null @@ -1,54 +0,0 @@ -/* - * 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') - }) - }) - }) -})