Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand All @@ -17,6 +18,7 @@ describe(`${crd} CRD`, () => {

before(() => {
cy.login();
guidedTour.close();
cy.createProjectWithCLI(testName);
});

Expand Down
Original file line number Diff line number Diff line change
@@ -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';
Expand All @@ -12,6 +13,7 @@ const managedCatalogSource = {
describe(`Interacting with CatalogSource page`, () => {
before(() => {
cy.login();
guidedTour.close();
cy.createProjectWithCLI(testName);
create(testCatalogSource);
});
Expand Down
Original file line number Diff line number Diff line change
@@ -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);
});

Expand Down
Original file line number Diff line number Diff line change
@@ -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';
Expand All @@ -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);
});

Expand Down