diff --git a/frontend/packages/topology/integration-tests/features/e2e/topology-ci.feature b/frontend/packages/topology/integration-tests/features/e2e/topology-ci.feature index a3cb6bcb0b4..201d17115df 100644 --- a/frontend/packages/topology/integration-tests/features/e2e/topology-ci.feature +++ b/frontend/packages/topology/integration-tests/features/e2e/topology-ci.feature @@ -1,5 +1,4 @@ -# Disabled due to createRoot concurrent rendering failures (OCPBUGS-82513) -@topology @smoke @manual +@topology @smoke Feature: Perform actions on topology User will be able to create workloads and perform actions on topology page diff --git a/frontend/packages/topology/integration-tests/support/commands/hooks.ts b/frontend/packages/topology/integration-tests/support/commands/hooks.ts index a0d6ea3ee16..bdd7cc18a30 100644 --- a/frontend/packages/topology/integration-tests/support/commands/hooks.ts +++ b/frontend/packages/topology/integration-tests/support/commands/hooks.ts @@ -2,12 +2,7 @@ import { checkErrors } from '@console/cypress-integration-tests/support'; /* eslint-disable no-console, promise/catch-or-return */ before(() => { - cy.exec('../../../../contrib/create-user.sh'); - const bridgePasswordIDP: string = Cypress.expose('BRIDGE_HTPASSWD_IDP') || 'test'; - const bridgePasswordUsername: string = Cypress.expose('BRIDGE_HTPASSWD_USERNAME') || 'test'; - cy.env(['BRIDGE_HTPASSWD_PASSWORD']).then(({ BRIDGE_HTPASSWD_PASSWORD }) => { - cy.login(bridgePasswordIDP, bridgePasswordUsername, BRIDGE_HTPASSWD_PASSWORD || 'test'); - }); + cy.login(); cy.document().its('readyState').should('eq', 'complete'); });