0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 18:07:17 +01:00
posthog/cypress
2024-02-12 14:11:41 +00:00
..
data/exports
e2e feat: Tighter modals (#20238) 2024-02-12 14:11:41 +00:00
fixtures fix(taxonomic-filter): Make selecting between property types more sea… (#20094) 2024-02-05 15:51:55 +00:00
productAnalytics chore(3000): remove feature flag (#19416) 2023-12-27 09:52:28 +01:00
support chore: Remove old prompts work (#20229) 2024-02-12 08:45:57 +00:00
README.md
tsconfig.json
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,
        })
    )
)