Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(e2e): record failed tests #175

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
8 changes: 8 additions & 0 deletions .github/workflows/e2e-testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,11 @@ jobs:
env:
RAD_PATH: ${{ github.workspace }}/.radicle/bin/rad
run: pnpm test:e2e

- name: Save fails report
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copied this from radicle-jetbrains-plugin (Source)

if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: e2e-test-fails-report-${{ matrix.os }}
path: ${{ github.workspace }}/test/e2e/_results_

3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@ debug.log*
# git / radicle
.gitsigners

# wdio
# e2e tests
.wdio-vscode-service
test/e2e/_results_
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -602,6 +602,7 @@
"ts-node": "^10.9.2",
"ts-xor": "^1.3.0",
"typescript": "^5.3.3",
"wdio-video-reporter": "^6.1.1",
"wdio-vscode-service": "^6.1.2",
"webdriverio": "^8.41.0",
"zx": "^8.1.9"
Expand Down
Loading