0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 09:14:46 +01:00
posthog/cypress/integration/licenses.js
Paolo D'Amico 167a79fa2f
Release navigation-1775 (#3167)
Co-authored-by: yakkomajuri <yakko.majuri@gmail.com>
2021-02-04 10:53:00 +01:00

9 lines
313 B
JavaScript

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