Skip to content

Commit b866668

Browse files
attempt at fixing pipeline
1 parent 54a8623 commit b866668

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
mkdir -p example/maestro-output
118118
# Run tests (produce JUnit results) and capture artifacts under example/maestro-output
119119
mkdir -p example/maestro-output/debug
120-
maestro test ./example/maestro/ --format junit --output example/maestro-results.xml --debug-output example/maestro-output/debug || true
120+
maestro test ./example/maestro/ --format junit --output example/maestro-results.xml --debug-output example/maestro-output/debug --test-output-dir example/maestro-output/debug || true
121121
# Attempt to record each Flow file individually (maestro record accepts a single flow file)
122122
bash -lc 'for f in ./example/maestro/*.yaml ./example/maestro/*.yml ./example/maestro/*.flow; do if [ -f "$f" ]; then echo "Recording $f"; maestro record --local "$f" "example/maestro-output/$(basename "$f").mp4" --debug-output example/maestro-output/debug || echo "record failed for $f"; fi; done' || true
123123
# If Maestro wrote to the user home tests dir, copy those into the output dir for upload

example/maestro/connectWidget.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
appId: com.anonymous.example
22
---
33
- launchApp
4-
- screenshot: "after-launch"
4+
- takeScreenshot: "after-launch"
55
- tapOn: "Connect"
6-
- screenshot: "after-tap-connect"
6+
- takeScreenshot: "after-tap-connect"
77
- assertVisible: "Select your institution"
8-
- screenshot: "after-select-institution"
8+
- takeScreenshot: "after-select-institution"
99
- tapOn: ".*MX Bank.*"
10-
- screenshot: "after-tap-mx-bank"
10+
- takeScreenshot: "after-tap-mx-bank"
1111
- assertVisible: "Enter your credentials"
12-
- screenshot: "after-enter-credentials"
12+
- takeScreenshot: "after-enter-credentials"

0 commit comments

Comments
 (0)