diff --git a/e2e_tests/integration/0.index.spec.ts b/e2e_tests/integration/0.index.spec.ts index 7b2780027c4..6af61a5d30f 100644 --- a/e2e_tests/integration/0.index.spec.ts +++ b/e2e_tests/integration/0.index.spec.ts @@ -50,27 +50,6 @@ describe('Neo4j Browser', () => { cy.connect('neo4j', password) }) - it('can show Canny badge in "Document" icon and correspond side bar drawer', () => { - cy.window().then(win => { - if (win.Canny && win.IsCannyLoaded && typeof win.Canny === 'function') { - // The Canny badge should appear when initially connected to the database - cy.get('[data-testid="navigationCannyDocuments"]', { - timeout: 5000 - }) - .children('div') - .should('have.class', 'Canny_BadgeContainer') - .children('div') - .should('have.class', 'Canny_Badge') - - // Click the navigation button to open the sidebar to show Documents drawer, and the badge should be shown in the changelog button - cy.get('[data-testid="navigationDocuments"]').click() - cy.get('[data-testid="documentDrawerCanny"]') - .children('div') - .should('have.class', 'Canny_BadgeContainer') - } - }) - }) - it('can empty the db', () => { cy.executeCommand(':clear') const query = 'MATCH (n) DETACH DELETE n'