0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-30 19:41:46 +01:00
posthog/cypress
Tom Owers 2a172a1f2f
fix: fixed 'yesterday' insights not filtering on the correct end date (#18412)
* Fixed 'yesterday' insights not filtering on the correct end date

* Fixed test
2023-11-07 10:17:51 +00:00
..
data/exports
e2e fix: fixed 'yesterday' insights not filtering on the correct end date (#18412) 2023-11-07 10:17:51 +00:00
fixtures feat: Add Unsubscription Survey (#18231) 2023-11-02 13:34:45 -07:00
productAnalytics fix: throw error so test failures are not swallowed (#17926) 2023-10-12 00:51:47 +01:00
support feat(surveys): Improved survey creation flow (#17902) 2023-10-16 14:38:29 +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,
        })
    )
)