mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 09:16:49 +01:00
893deff260
* Big refactoring of Insights codebase * More deletions * Added missing Attribution Filter Fixed Lifecylce toggles style * Fixed funnels style and formula / breakdown buttons * Removed ant stylers * More refactoring * Fix * Fix imports * Fixed styles to match previous * Fixed some remaining issues * rename 1 * Rename folders * Renamed away from EF* * Fix cypress tests * Removed comment * Fixed nav always showing * Corrected EF name |
||
---|---|---|
.. | ||
data/exports | ||
e2e | ||
fixtures | ||
support | ||
README.md | ||
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,
})
)
)