mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 18:26:15 +01:00
b1f304754f
* Implement new person page layout * Simplify default 404 page similar to person 404 * Set page headings to weight 600 instead of 700 to align with design * Fix style of person loading state and page title * Don't use deprecated `substr` * Rework `LemonRow` compact mode * Rework group page too * Update group 404 message * Fix `personsLogic` * Add comment * Fix type name conflict * Update Person.cy-spec.js * Update person.js * Update Person.cy-spec.js * Fix display of extra person IDs * Update Person.cy-spec.js * Improve property key/value sizing * Update person.js * Optimize personsLogic's urlToAction * Put property deletion button in its own rightmost column * Add `SessionRecordingsTable` empty state * Use `IconDeleteForever` instead of `IconClose` for deletion * Update person.js * Fix sync of person and cohorts * Fix "Should merge person" |
||
---|---|---|
.. | ||
fixtures | ||
integration | ||
plugins | ||
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(/.*\/decide\/.*/, (req) =>
req.reply(
decideResponse({
'6619-query-events-by-date': true,
})
)
)