Skip to content

Commit 4ad60ce

Browse files
authored
fix(6562): adaptiveZoom test needs the dashboards featureFlag to turn on in CI (#6592)
1 parent 76f3e36 commit 4ad60ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cypress/e2e/shared/adaptiveZoom.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {points} from '../../support/commands'
44
const setupData = (cy: Cypress.Chainable) =>
55
cy.flush().then(() =>
66
cy.signin().then(() => {
7-
cy.setFeatureFlags({zoomRequery: true})
7+
cy.setFeatureFlags({zoomRequery: true, showDashboardsInNewIOx: true})
88
return cy.get('@org').then(({id: orgID, name}: Organization) =>
99
cy.createDashboard(orgID).then(({body}) =>
1010
cy.fixture('routes').then(({orgs}) => {
@@ -72,7 +72,7 @@ const setupData = (cy: Cypress.Chainable) =>
7272
})
7373
)
7474

75-
describe.skip('Adaptive Zoom', () => {
75+
describe('Adaptive Zoom', () => {
7676
beforeEach(() => setupData(cy))
7777

7878
it('makes a query when zooming in', () => {

0 commit comments

Comments
 (0)