0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 18:07:17 +01:00
posthog/cypress/e2e/toolbar.js
timgl 3d8f8dfe26
perf(decide): Speed up decide endpoint by shortcircuiting middleware (#10744)
* perf(decide): Speed up decide endpoint by shortcircuiting middleware

* fix cypress tests
2022-07-13 14:37:53 +01:00

25 lines
1009 B
JavaScript

describe('Toolbar', () => {
it('Toolbar loads', () => {
cy.get('[data-attr="menu-item-toolbar-launch"]').click()
cy.get('[data-attr="sidebar-launch-toolbar"]').contains('Add toolbar URL').click()
cy.location().then((loc) => {
cy.get('[data-attr="url-input"]').clear().type(`http://${loc.host}/demo`)
cy.get('[data-attr="url-save"]').click()
cy.get('[data-attr="toolbar-open"]')
.first()
.parent()
.invoke('attr', 'href')
.then((href) => {
cy.visit(href)
})
cy.get('#__POSTHOG_TOOLBAR__').shadow().find('div').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')
})
})