From 99c27a88f7e4e9172044180c3b3e282d920c8eb0 Mon Sep 17 00:00:00 2001 From: Akash Rathod <41251473+akashrathod28@users.noreply.github.com> Date: Wed, 18 Oct 2023 11:22:23 +0200 Subject: [PATCH] [ACS-5617] test result upload protractor in git action (#3481) --- .github/actions/run-e2e/action.yml | 2 +- e2e/playwright/navigation/src/tests/breadcrumb.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/run-e2e/action.yml b/.github/actions/run-e2e/action.yml index 3684275bc..6f034f6b9 100644 --- a/.github/actions/run-e2e/action.yml +++ b/.github/actions/run-e2e/action.yml @@ -40,4 +40,4 @@ runs: uses: actions/upload-artifact@v3 with: name: ${{ inputs.artifact-name }} - path: test-results/ + path: e2e-output/ diff --git a/e2e/playwright/navigation/src/tests/breadcrumb.spec.ts b/e2e/playwright/navigation/src/tests/breadcrumb.spec.ts index 3de3fc76e..6d35ac86b 100644 --- a/e2e/playwright/navigation/src/tests/breadcrumb.spec.ts +++ b/e2e/playwright/navigation/src/tests/breadcrumb.spec.ts @@ -70,7 +70,7 @@ test.describe('viewer action file', () => { }); test.afterAll(async ({ nodesApiAction }) => { - await nodesApiAction.deleteNodes([parentId], true); + await nodesApiAction.deleteNodes([parentId, parent2Id], true); }); test('[C260964] Personal Files breadcrumb main node', async ({ personalFiles }) => {