0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-28 17:54:41 +01:00
posthog/cypress
2023-03-23 17:41:16 +01:00
..
data/exports feat(exports): Dashboard / Insight exporting (#9830) 2022-05-27 14:31:17 +02:00
e2e chore(hogql): consolidate all parts of HogQL under one feature flag (and enable HogQL beta) (#14871) 2023-03-23 17:41:16 +01:00
fixtures test(login): Verify that Google login link is correct (#14668) 2023-03-10 10:15:42 +00:00
productAnalytics feat: allow query flag with data exploration insight flag (#14845) 2023-03-22 10:36:09 +01:00
support fix: use cached insight if the scene has it (#14842) 2023-03-21 17:10:10 +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,
        })
    )
)