diff --git a/frontend/packages/integration-tests-cypress/tests/crd-extensions/console-external-log-link.cy.ts b/frontend/packages/integration-tests-cypress/tests/crd-extensions/console-external-log-link.cy.ts index 5edffda1e19..c8e90e9ea45 100644 --- a/frontend/packages/integration-tests-cypress/tests/crd-extensions/console-external-log-link.cy.ts +++ b/frontend/packages/integration-tests-cypress/tests/crd-extensions/console-external-log-link.cy.ts @@ -2,6 +2,7 @@ import { safeLoad, safeDump } from 'js-yaml'; import * as _ from 'lodash'; import { checkErrors, testName } from '../../support'; import { detailsPage } from '../../views/details-page'; +import { guidedTour } from '../../views/guided-tour'; import { listPage } from '../../views/list-page'; import { modal } from '../../views/modal'; import * as yamlEditor from '../../views/yaml-editor'; @@ -17,6 +18,7 @@ describe(`${crd} CRD`, () => { before(() => { cy.login(); + guidedTour.close(); cy.createProjectWithCLI(testName); }); diff --git a/frontend/packages/operator-lifecycle-manager/integration-tests-cypress/tests/catalog-source-details.cy.ts b/frontend/packages/operator-lifecycle-manager/integration-tests-cypress/tests/catalog-source-details.cy.ts index 0c6d5105414..8d0d534f947 100644 --- a/frontend/packages/operator-lifecycle-manager/integration-tests-cypress/tests/catalog-source-details.cy.ts +++ b/frontend/packages/operator-lifecycle-manager/integration-tests-cypress/tests/catalog-source-details.cy.ts @@ -1,3 +1,4 @@ +import { guidedTour } from '@console/cypress-integration-tests/views/guided-tour'; import { checkErrors, create, testName } from '../../../integration-tests-cypress/support'; import { detailsPage } from '../../../integration-tests-cypress/views/details-page'; import { modal } from '../../../integration-tests-cypress/views/modal'; @@ -12,6 +13,7 @@ const managedCatalogSource = { describe(`Interacting with CatalogSource page`, () => { before(() => { cy.login(); + guidedTour.close(); cy.createProjectWithCLI(testName); create(testCatalogSource); }); diff --git a/frontend/packages/operator-lifecycle-manager/integration-tests-cypress/tests/create-namespace.cy.ts b/frontend/packages/operator-lifecycle-manager/integration-tests-cypress/tests/create-namespace.cy.ts index b35b0b011e6..3916f00ebba 100644 --- a/frontend/packages/operator-lifecycle-manager/integration-tests-cypress/tests/create-namespace.cy.ts +++ b/frontend/packages/operator-lifecycle-manager/integration-tests-cypress/tests/create-namespace.cy.ts @@ -1,9 +1,11 @@ +import { guidedTour } from '@console/cypress-integration-tests/views/guided-tour'; import { checkErrors, testName } from '../../../integration-tests-cypress/support'; import { modal } from '../../../integration-tests-cypress/views/modal'; describe('Create namespace from install operators', () => { before(() => { cy.login(); + guidedTour.close(); cy.createProjectWithCLI(testName); }); diff --git a/frontend/packages/operator-lifecycle-manager/integration-tests-cypress/tests/deprecated-operator-warnings.cy.ts b/frontend/packages/operator-lifecycle-manager/integration-tests-cypress/tests/deprecated-operator-warnings.cy.ts index 5c5ced91380..f7fe54abb27 100644 --- a/frontend/packages/operator-lifecycle-manager/integration-tests-cypress/tests/deprecated-operator-warnings.cy.ts +++ b/frontend/packages/operator-lifecycle-manager/integration-tests-cypress/tests/deprecated-operator-warnings.cy.ts @@ -1,3 +1,4 @@ +import { guidedTour } from '@console/cypress-integration-tests/views/guided-tour'; import { checkErrors, create } from '../../../integration-tests-cypress/support'; import { testDeprecatedCatalogSource, testDeprecatedSubscription } from '../mocks'; import { operator } from '../views/operator.view'; @@ -23,6 +24,7 @@ const DEPRECATED_OPERATOR_WARNING_VERSION_ID = 'deprecated-operator-warning-vers describe('Deprecated operator warnings', () => { before(() => { cy.login(); + guidedTour.close(); create(testDeprecatedCatalogSource); });