mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 17:24:15 +01:00
d1c75ab747
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
13 lines
497 B
TypeScript
13 lines
497 B
TypeScript
describe('Project Homepage', () => {
|
|
beforeEach(() => {
|
|
cy.intercept('GET', /\/api\/environments\/\d+\/dashboards\/\d+\//).as('getDashboard')
|
|
cy.clickNavMenu('projecthomepage')
|
|
})
|
|
|
|
it('Shows home dashboard on load', () => {
|
|
cy.wait('@getDashboard').its('response.statusCode').should('eq', 200)
|
|
cy.get(`@getDashboard.all`).should('have.length', 1) // Only loads once
|
|
cy.get('[data-attr=insight-card]').its('length').should('be.gte', 1)
|
|
})
|
|
})
|