Skip to content

Commit dc8308b

Browse files
fix: give time to settle
1 parent fce826c commit dc8308b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

e2e/demo_app/.maestro/commands/waitForAnimationToEnd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ tags:
99
- evalScript: ${maestro.startTime = new Date()}
1010
- waitForAnimationToEnd
1111
- evalScript: ${maestro.endTime = new Date()}
12-
- assertTrue: ${maestro.endTime - maestro.startTime < 1000} # Nothing to wait for
12+
- assertTrue: ${maestro.endTime - maestro.startTime < 3000} # Nothing to wait for (allow for page transition settle)
1313

1414
- tapOn:
1515
text: "Animate (30s)"

e2e/run_tests

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ _h3() { printf "==> [%s] [%s] => %s\n" "$1" "$2" "$3"; }
1616
cloud="android_device_configuration,ios_device_configuration" # Maestro Cloud specific tests
1717
platform="${1:-}"
1818
case "$platform" in
19-
android) exclude_tags="ios,web,$cloud,revisit" ;;
20-
ios) exclude_tags="android,$cloud,web,revisit" ;;
21-
web) exclude_tags="android,ios,$cloud,revisit" ;;
19+
android) exclude_tags="ios,web,$cloud" ;;
20+
ios) exclude_tags="android,$cloud,web" ;;
21+
web) exclude_tags="android,ios,$cloud" ;;
2222
*) echo "usage: $0 <android|ios|web>"; exit 1 ;;
2323
esac
2424

0 commit comments

Comments
 (0)