0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-29 11:12:33 +01:00
posthog/cypress/integration/licenses.js
Michael Matloka b32a77fb56
Release lemonade for self-hosted users (#7059)
Co-authored-by: Paolo D'Amico <paolodamico@users.noreply.github.com>
2021-11-11 12:20:01 -08:00

9 lines
298 B
JavaScript

describe('Licenses', () => {
it('Licenses loaded', () => {
cy.get('[data-attr=top-menu-toggle]').click()
cy.get('[data-attr=top-menu-item-licenses]').click()
cy.get('h1').should('contain', 'Licenses')
cy.title().should('equal', 'Licenses • PostHog')
})
})