mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 18:07:17 +01:00
863e75bf9f
* set user.toolbar_mode default to "toolbar", turning it on for new users * test that the toolbar loads when you open /demo
10 lines
182 B
JavaScript
10 lines
182 B
JavaScript
describe('Toolbar', () => {
|
|
beforeEach(() => {
|
|
cy.visit('/demo')
|
|
})
|
|
|
|
it('Toolbar loads', () => {
|
|
cy.get('#__POSTHOG_TOOLBAR__').should('exist')
|
|
})
|
|
})
|