diff --git a/e2e/cypress/tests/01-api-key/04-request-access-with-out-collecting-credentials.cy.ts b/e2e/cypress/tests/01-api-key/04-request-access-with-out-collecting-credentials.cy.ts index 63747c8fa..4eb63eb4c 100644 --- a/e2e/cypress/tests/01-api-key/04-request-access-with-out-collecting-credentials.cy.ts +++ b/e2e/cypress/tests/01-api-key/04-request-access-with-out-collecting-credentials.cy.ts @@ -26,13 +26,6 @@ describe('Request Access without colleting credential Spec', () => { }) }) - it('creates an application', () => { - cy.visit(app.path) - cy.get('@developer').then(({ application }: any) => { - app.createApplication(application) - }) - }) - it('Collect the credentials', () => { cy.visit(apiDir.path) cy.get('@developer').then(({ product, application,accessRequest }: any) => { diff --git a/e2e/cypress/tests/16-gwa-cli/02-cli-generate-config.ts b/e2e/cypress/tests/16-gwa-cli/02-cli-generate-config.ts index bb346b5cd..5344b2168 100644 --- a/e2e/cypress/tests/16-gwa-cli/02-cli-generate-config.ts +++ b/e2e/cypress/tests/16-gwa-cli/02-cli-generate-config.ts @@ -89,6 +89,10 @@ describe('Verify CLI commands for generate/apply config', () => { pd.verifyDataset('my-service', 'my-service API') }) + it('Navigate to home path', () => { + cy.visit(login.path) + }) + after(() => { cy.logout() cy.clearLocalStorage({ log: true })