0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-25 02:49:32 +01:00
posthog/cypress/e2e/toolbar.js

13 lines
438 B
JavaScript
Raw Normal View History

describe('Toolbar', () => {
it('Toolbar loads', () => {
cy.visit('/demo')
cy.get('#__POSTHOG_TOOLBAR__').should('exist')
})
it('toolbar item in sidebar has launch options', () => {
cy.get('[data-attr="menu-item-toolbar-launch"]').click()
cy.get('[data-attr="sidebar-launch-toolbar"]').contains('Add toolbar URL').click()
cy.location('pathname').should('include', '/toolbar')
})
})