feat(ui/cypress): test also show users toggle
parent
9af9f409fa
commit
cac6b06263
|
@ -289,10 +289,14 @@ describe('InfluxDB', () => {
|
|||
cy.get('th').contains('Users').should('exist')
|
||||
})
|
||||
|
||||
cy.getByTestID('hide-users--toggle').click()
|
||||
cy.getByTestID('show-users--toggle').click()
|
||||
cy.getByTestID('admin-table--head').within(() => {
|
||||
cy.get('th').contains('Users').should('not.exist')
|
||||
})
|
||||
cy.getByTestID('show-users--toggle').click()
|
||||
cy.getByTestID('admin-table--head').within(() => {
|
||||
cy.get('th').contains('Users').should('exist')
|
||||
})
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue