mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 18:07:17 +01:00
e4842f7fed
* Feature flag table improvements * sorter created by * fix cypress test
48 lines
2.2 KiB
JavaScript
48 lines
2.2 KiB
JavaScript
describe('Feature Flags', () => {
|
|
beforeEach(() => {
|
|
cy.visit('/feature_flags')
|
|
})
|
|
|
|
it('Create feature flag', () => {
|
|
cy.get('h1').should('contain', 'Feature Flags')
|
|
cy.get('[data-attr=new-feature-flag]').click()
|
|
cy.get('[data-attr=feature-flag-name').type('beta feature').should('have.value', 'beta feature')
|
|
cy.get('[data-attr=feature-flag-key').should('have.value', 'beta-feature')
|
|
|
|
// select "add filter" and "property"
|
|
cy.get('[data-attr=new-prop-filter-feature-flag-undefined').click()
|
|
|
|
// select the first property
|
|
cy.get('[data-attr=property-filter-dropdown]').click()
|
|
cy.get('[data-attr=prop-filter-person-0]').click({ force: true })
|
|
|
|
// selects the first value
|
|
cy.get('[data-attr=prop-val]').click()
|
|
cy.get('[data-attr=prop-val-0]').click({ force: true })
|
|
|
|
cy.get('[data-attr=feature-flag-switch').click()
|
|
cy.get('[data-attr=feature-flag-submit').click()
|
|
cy.get('[data-attr=feature-flag-table').should('contain', 'beta feature')
|
|
cy.get('[data-attr=rollout-percentage').should('contain', '30%')
|
|
cy.get('[data-attr=feature-flag-table').should('contain', 'is_demo')
|
|
|
|
cy.get('[data-attr=feature-flag-table] tr:first-child td:first-child').click()
|
|
cy.get('[data-attr=feature-flag-name').type(' updated').should('have.value', 'beta feature updated')
|
|
cy.get('[data-attr=feature-flag-submit').click()
|
|
cy.get('[data-attr=feature-flag-table').should('contain', 'beta feature updated')
|
|
})
|
|
|
|
it('Delete feature flag', () => {
|
|
cy.get('h1').should('contain', 'Feature Flags')
|
|
cy.get('[data-attr=new-feature-flag]').click()
|
|
cy.get('[data-attr=feature-flag-name').type('to be deleted').should('have.value', 'to be deleted')
|
|
cy.get('[data-attr=feature-flag-key').should('have.value', 'to-be-deleted')
|
|
cy.get('[data-attr=feature-flag-switch').click()
|
|
cy.get('[data-attr=feature-flag-submit').click()
|
|
cy.get('[data-attr=feature-flag-table').should('contain', 'to be deleted')
|
|
cy.get('[data-row-key="to-be-deleted"]').click()
|
|
cy.get('[data-attr=delete-flag]').click()
|
|
cy.contains('Click to undo').should('exist')
|
|
})
|
|
})
|