-
-
Notifications
You must be signed in to change notification settings - Fork 419
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
fix: no actions in w3c actions case #2432
Conversation
oh...
So this test failed actually but passed. Let me make the threshold strict a bit more |
actions: [ | ||
{type: 'pause', duration: 0}, | ||
{type: 'pause', duration: 0}, | ||
{type: 'pause', duration: 0} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be 6 times.
@@ -118,7 +118,7 @@ jobs: | |||
failures=$(cat "$RESULTS_XML" | xq --xpath '//testsuite/@failures') | |||
threshold=$(( (failures + errors) * 100 / (tests - skipped) )) | |||
cat "$RESULTS_XML" | |||
if [[ $threshold -gt 10 ]]; then | |||
if [[ $threshold -gt 7 ]]; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not sure we are ready to do this yet
hm...
It looks like this is CI side issue. |
It's related to npm/cli#7667 |
@@ -27,6 +27,7 @@ jobs: | |||
needs: | |||
- prepare_matrix | |||
strategy: | |||
fail-fast: false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unit test is pretty fast, so fail-fast: false
should be good
## [7.24.1](v7.24.0...v7.24.1) (2024-07-20) ### Bug Fixes * no actions in w3c actions case ([#2432](#2432)) ([8bd2bd6](8bd2bd6))
🎉 This issue has been resolved in version 7.24.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Let's update existing e2e for send_keys with w3c action in selenium client way.
For now, this test should fail without appium/WebDriverAgent#919.