Merge pull request #12270 from influxdata/test/filter-funcs
test(explorer): move test for filtering functionspull/12253/head
commit
f23370dcd2
|
@ -32,6 +32,13 @@ describe('DataExplorer', () => {
|
|||
|
||||
cy.getByTestID('time-machine-submit-button').should('be.disabled')
|
||||
})
|
||||
|
||||
it('can filter aggregation functions by name from script editor mode', () => {
|
||||
cy.getByTestID('switch-to-script-editor').click()
|
||||
|
||||
cy.get('.input-field').type('covariance')
|
||||
cy.getByTestID('toolbar-function').should('have.length', 1)
|
||||
})
|
||||
})
|
||||
|
||||
describe('visualizations', () => {
|
||||
|
@ -50,11 +57,4 @@ describe('DataExplorer', () => {
|
|||
})
|
||||
})
|
||||
})
|
||||
|
||||
it('can filter aggregation functions by name from script editor mode', () => {
|
||||
cy.getByTestID('switch-to-script-editor').click()
|
||||
|
||||
cy.get('.input-field').type('covariance')
|
||||
cy.getByTestID('toolbar-function').should('have.length', 1)
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue