Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions cypress/e2e/header.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ it('renders Testing Playground Header', () => {
cy.findByLabelText(/test-id attribute:/i).should('not.be.visible');

// more info menu shows
cy.findByRole('menuitem', { name: /roadmap/i }).should('exist').and('have.attr', 'href', 'https://github.com/testing-library/testing-playground/projects/1');
cy.findByRole('menuitem', { name: /github/i }).should('exist').and('have.attr', 'href', 'https://github.com/testing-library/testing-playground/issues');
cy.findByRole('menuitem', { name: /support us/i }).should('exist').and('have.attr', 'href', 'https://github.com/sponsors/smeijer');
cy.findByRole('menuitem', { name: /twitter/i }).should('exist').and('have.attr', 'href', 'https://twitter.com/meijer_s');
Expand All @@ -55,7 +54,6 @@ it('renders Testing Playground Header', () => {
// click outside
cy.findByRole('button', { name: /more info/i }).parent().click();
// previous menu disappear
cy.findByRole('menuitem', { name: /roadmap/i }).should('not.exist');
cy.findByRole('menuitem', { name: /github/i }).should('not.exist');
cy.findByRole('menuitem', { name: /support us/i }).should('not.exist');
cy.findByRole('menuitem', { name: /twitter/i }).should('not.exist');
Expand Down
12 changes: 0 additions & 12 deletions src/components/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,12 +166,6 @@ function Header({
</MenuButton>

<MenuList>
<MenuLink
href="https://github.com/testing-library/testing-playground/projects/1"
target="_blank"
>
Roadmap
</MenuLink>
<MenuLink
href="https://github.com/testing-library/testing-playground/issues"
target="_blank"
Expand All @@ -196,12 +190,6 @@ function Header({
>
Chrome Extension
</MenuLink>
<MenuLink
href="https://addons.mozilla.org/en-US/firefox/addon/testing-playground"
target="_blank"
>
Firefox Extension
</MenuLink>

<div className="border-b border-gray-200 mx-4 my-2" />

Expand Down