0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-29 03:04:16 +01:00
posthog/cypress
Paul D'Ambra b82208edd6
feat: only show JSON tab when editing (#14861)
* feat: only show JSON tab when editing

* a couple of e2e tests

* real selectors and the right feature flags
2023-03-22 19:27:37 +00:00
..
data/exports
e2e feat: only show JSON tab when editing (#14861) 2023-03-22 19:27:37 +00: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
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,
        })
    )
)