diff --git a/frontend/packages/pipelines-plugin/integration-tests/features/e2e/pipeline-ci.feature b/frontend/packages/pipelines-plugin/integration-tests/features/e2e/pipeline-ci.feature index 008d2918f37..6c430b35ff9 100644 --- a/frontend/packages/pipelines-plugin/integration-tests/features/e2e/pipeline-ci.feature +++ b/frontend/packages/pipelines-plugin/integration-tests/features/e2e/pipeline-ci.feature @@ -71,7 +71,7 @@ Feature: Entire pipeline flow from Builder page Given user is at pipelines page When user clicks Last Run value of the pipeline "flow" Then user will be redirected to Pipeline Run Details page - And user is able to see Details, YAML, TaskRuns, Parameters, Logs and Events tabs + And user is able to see Details, YAML, TaskRuns, Parameters, Logs, Events and Output tabs And Details tab is displayed with field names Name, Labels, Annotations, Created At, Owner and Pipelines And user is able to see the pipelineRuns with status as Succeeded And Actions menu contains options "Rerun", "Delete PipelineRun" diff --git a/frontend/packages/pipelines-plugin/integration-tests/features/pipelines/pipelines-as-code.feature b/frontend/packages/pipelines-plugin/integration-tests/features/pipelines/pipelines-as-code.feature index 3aa60fb3a5c..4826c7fd90d 100644 --- a/frontend/packages/pipelines-plugin/integration-tests/features/pipelines/pipelines-as-code.feature +++ b/frontend/packages/pipelines-plugin/integration-tests/features/pipelines/pipelines-as-code.feature @@ -98,7 +98,7 @@ Feature: Perform Actions on repository And user is at repositories page When user clicks Last Run value of repository "" Then user will be redirected to Pipeline Run Details page - And user is able to see Details, YAML, TaskRuns, Parameters, Logs and Events tabs + And user is able to see Details, YAML, TaskRuns, Parameters, Logs, Events and Output tabs And Details tab is displayed with fields Repository, Branch, Commit id and Event type And Actions dropdown display on the top right corner of the page diff --git a/frontend/packages/pipelines-plugin/integration-tests/features/pipelines/pipelines-runs.feature b/frontend/packages/pipelines-plugin/integration-tests/features/pipelines/pipelines-runs.feature index fc871b68eb4..f0e044d1f01 100644 --- a/frontend/packages/pipelines-plugin/integration-tests/features/pipelines/pipelines-runs.feature +++ b/frontend/packages/pipelines-plugin/integration-tests/features/pipelines/pipelines-runs.feature @@ -44,7 +44,7 @@ Feature: Pipeline Runs And user is at pipelines page When user clicks Last Run value of "" Then user will be redirected to Pipeline Run Details page - And user is able to see Details, YAML, TaskRuns, Parameters, Logs and Events tabs + And user is able to see Details, YAML, TaskRuns, Parameters, Logs, Events and Output tabs And Details tab is displayed with field names Name, Namespace, Labels, Annotations, Created At, Owner, Status, Pipeline and Triggered by And Actions dropdown display on the top right corner of the page @@ -343,7 +343,7 @@ Feature: Pipeline Runs And user is at pipelines page When user clicks Last Run value of "pipeline-run-no-parameters" Then user will be redirected to Pipeline Run Details page - And user is able to see Details, YAML, TaskRuns, Parameters, Logs and Events tabs + And user is able to see Details, YAML, TaskRuns, Parameters, Logs, Events and Output tabs And user navigates to pipelineRun parameters tab And user is able to see No parameters are associated with this PipelineRun diff --git a/frontend/packages/pipelines-plugin/integration-tests/support/pages/pipelines/pipelineRun-details-page.ts b/frontend/packages/pipelines-plugin/integration-tests/support/pages/pipelines/pipelineRun-details-page.ts index 7e35e5ee00e..0fbd5bf33c4 100644 --- a/frontend/packages/pipelines-plugin/integration-tests/support/pages/pipelines/pipelineRun-details-page.ts +++ b/frontend/packages/pipelines-plugin/integration-tests/support/pages/pipelines/pipelineRun-details-page.ts @@ -68,9 +68,10 @@ export const pipelineRunDetailsPage = { cy.get(pipelineRunDetailsPO.detailsTab).should('be.visible'); cy.get(pipelineRunDetailsPO.yamlTab).should('be.visible'); cy.get(pipelineRunDetailsPO.taskRunsTab).should('be.visible'); + cy.get(pipelineRunDetailsPO.parametersTab).should('be.visible'); cy.get(pipelineRunDetailsPO.logsTab).should('be.visible'); cy.get(pipelineRunDetailsPO.eventsTab).should('be.visible'); - cy.get(pipelineRunDetailsPO.parametersTab).should('be.visible'); + cy.get(pipelineRunDetailsPO.outputTab).should('be.visible'); }, verifyFields: () => { cy.byLegacyTestID('resource-summary').within(() => { diff --git a/test-cypress.sh b/test-cypress.sh index dbf16d8275a..ddca5cc647a 100755 --- a/test-cypress.sh +++ b/test-cypress.sh @@ -57,7 +57,7 @@ if [ -n "${nightly-}" ] && [ -z "${pkg-}" ]; then yarn run test-cypress-dev-console-nightly yarn run test-cypress-helm-nightly - # yarn run test-cypress-pipelines-nightly + yarn run test-cypress-pipelines-nightly # yarn run test-cypress-shipwright-nightly yarn run test-cypress-topology-nightly yarn run test-cypress-knative-nightly @@ -73,7 +73,7 @@ if [ -n "${headless-}" ] && [ -z "${pkg-}" ]; then yarn run test-cypress-helm-headless yarn run test-cypress-knative-headless yarn run test-cypress-topology-headless - # yarn run test-cypress-pipelines-headless + yarn run test-cypress-pipelines-headless # yarn run test-cypress-shipwright-headless # yarn run test-cypress-webterminal-headless exit;