diff --git a/.github/actions/run-e2e/action.yml b/.github/actions/run-e2e/action.yml index 3684275bc9..6f034f6b99 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 3de3fc76eb..6d35ac86b0 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 }) => {