Merge pull request #5899 from influxdata/aggregateFunctions

fix: aggregate function no error pop up
pull/5901/head
k3yi0 2022-03-29 14:16:34 +02:00 committed by GitHub
commit a8379b9506
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 14 deletions

View File

@ -94,20 +94,6 @@ describe('query builder', () => {
})
cy.get('.builder-card--contents').within(() => {
cy.get('#flx-agrselectmean').click()
// Temporarily jump outside the builder-card--body element scope to check whether or not notification error message popped up
cy.document()
.its('body')
.within(() => {
cy.get('.notification-error')
.should('exist')
.and(
'have.text',
'You must have at least one aggregation function selected'
)
})
cy.get('#flx-agrselectmax').click()
cy.get('#flx-agrselectmean').click()
})