0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-12-01 12:21:02 +01:00
posthog/cypress
Li Yi Yu 5951ec301d
fix(surveys): survey results viz fixes (#20345)
* rename count bar to follow event name format

* add explore more results button

* fix squished options height

* Update UI snapshots for `webkit` (2)

* Update UI snapshots for `webkit` (2)

* fix wording

* Update UI snapshots for `webkit` (2)

* add data attr

* clarify match

* add bar chart icon

---------

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
2024-02-15 18:20:03 +00:00
..
data/exports feat(exports): Dashboard / Insight exporting (#9830) 2022-05-27 14:31:17 +02:00
e2e fix(surveys): survey results viz fixes (#20345) 2024-02-15 18:20:03 +00:00
fixtures fix(taxonomic-filter): Make selecting between property types more sea… (#20094) 2024-02-05 15:51:55 +00:00
productAnalytics fix(insights): Move from GET to POST queries (#19859) 2024-02-12 16:33:04 +01:00
support chore: Remove old prompts work (#20229) 2024-02-12 08:45:57 +00:00
README.md feat(exports): Dashboard / Insight exporting (#9830) 2022-05-27 14:31:17 +02:00
tsconfig.json test(e2e): convert cypress to typescript (#13513) 2022-12-30 11:23:09 +01:00
wait.py

Testing Feature Flags

The Cypress tests run with a PostHog instance that has no feature flags set up.

To test feature flags you can intercept the call to the decide endpoint

// sometimes the system under test calls `/decide`
// and sometimes it calls https://app.posthog.com/decide
cy.intercept('https://app.posthog.com/decide/*', (req) =>
    req.reply(
        decideResponse({
            // add feature flags here, for e.g.
            // 'feature-flag-key': true,
        })
    )
)