mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-25 11:17:50 +01:00
f3f3fa6a08
* fix: there is a fine line between optimising and breaking * fix * Fix * fix
67 lines
2.7 KiB
TypeScript
67 lines
2.7 KiB
TypeScript
import { urls } from 'scenes/urls'
|
|
import { randomString } from '../support/random'
|
|
import { decideResponse } from '../fixtures/api/decide'
|
|
import { savedInsights, createInsight } from '../productAnalytics'
|
|
|
|
// For tests related to trends please check trendsElements.js
|
|
describe('Insights', () => {
|
|
beforeEach(() => {
|
|
cy.intercept('https://app.posthog.com/decide/*', (req) =>
|
|
req.reply(
|
|
decideResponse({
|
|
hogql: true,
|
|
'data-exploration-insights': true,
|
|
})
|
|
)
|
|
)
|
|
|
|
cy.visit(urls.insightNew())
|
|
})
|
|
|
|
describe('duplicating insights', () => {
|
|
let insightName
|
|
beforeEach(() => {
|
|
cy.visit(urls.savedInsights()) // make sure turbo mode has cached this page
|
|
insightName = randomString('insight-name-')
|
|
createInsight(insightName)
|
|
})
|
|
it('can duplicate insights from the insights list view', () => {
|
|
cy.visit(urls.savedInsights())
|
|
cy.contains('.saved-insights table tr', insightName).within(() => {
|
|
cy.get('[data-attr="more-button"]').click()
|
|
})
|
|
cy.get('[data-attr="duplicate-insight-from-list-view"]').click()
|
|
cy.contains('.saved-insights table tr', `${insightName} (copy)`).should('exist')
|
|
})
|
|
|
|
it('can duplicate insights from the insights card view', () => {
|
|
cy.visit(urls.savedInsights())
|
|
cy.contains('.saved-insights .LemonSegmentedButton', 'Cards').click()
|
|
cy.contains('.CardMeta', insightName).within(() => {
|
|
cy.get('[data-attr="more-button"]').click()
|
|
})
|
|
cy.get('[data-attr="duplicate-insight-from-card-list-view"]').click()
|
|
cy.contains('.CardMeta', `${insightName} (copy)`).should('exist')
|
|
})
|
|
|
|
it('can duplicate from insight view', () => {
|
|
cy.get('.page-buttons [data-attr="more-button"]').click()
|
|
cy.get('[data-attr="duplicate-insight-from-insight-view"]').click()
|
|
cy.get('[data-attr="insight-name"]').should('contain', `${insightName} (copy)`)
|
|
|
|
savedInsights.checkInsightIsInListView(`${insightName} (copy)`)
|
|
})
|
|
|
|
it('can save insight as a copy', () => {
|
|
cy.get('[data-attr="insight-edit-button"]').click()
|
|
|
|
cy.get('[data-attr="insight-save-dropdown"]').click()
|
|
cy.get('[data-attr="insight-save-as-new-insight"]').click()
|
|
cy.get('.ant-modal-content .ant-btn-primary').click()
|
|
cy.get('[data-attr="insight-name"]').should('contain', `${insightName} (copy)`)
|
|
|
|
savedInsights.checkInsightIsInListView(`${insightName} (copy)`)
|
|
})
|
|
})
|
|
})
|