Skip to content
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

## [2.0.2]

### Added

- More E2E tests

## [2.0.1]

### Added
Expand Down
11 changes: 11 additions & 0 deletions example/maestro/budgetsWidget.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# This test assumes that a budget has been generated for the specific user

appId: com.anonymous.example
---
- retry:
maxRetries: 3
commands:
- launchApp
- tapOn: "Budgets"
- assertVisible: "$.*"
- assertVisible: "Spent"
11 changes: 6 additions & 5 deletions example/maestro/connectWidget.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
appId: com.anonymous.example
---
- launchApp
- tapOn: "Connect"
- assertVisible: "Select your institution"
- tapOn: ".*MX Bank.*"
- assertVisible: "Enter your credentials"
- retry:
maxRetries: 3
commands:
- launchApp
- tapOn: "Connect"
- assertVisible: "Select your institution"
10 changes: 10 additions & 0 deletions example/maestro/goalsWidget.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
appId: com.anonymous.example
---
- retry:
maxRetries: 3
commands:
- launchApp
- tapOn: "Goals"
- assertVisible: ".*Total.*"
- assertVisible: ".*Monthly.*"
- assertVisible: ".*Contribution.*"
8 changes: 8 additions & 0 deletions example/maestro/pulseWidget.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
appId: com.anonymous.example
---
- retry:
maxRetries: 3
commands:
- launchApp
- tapOn: "Pulse"
- assertVisible: ".*see what insights we have for you.*"
10 changes: 10 additions & 0 deletions example/maestro/spendingWidget.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
appId: com.anonymous.example
---
- retry:
maxRetries: 3
commands:
- launchApp
- tapOn: "Spending"
- assertVisible: "Spending"
- assertVisible: "Income"
- assertVisible: "Total.*"
8 changes: 8 additions & 0 deletions example/maestro/transactionsWidget.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
appId: com.anonymous.example
---
- retry:
maxRetries: 3
commands:
- launchApp
- tapOn: "Transactions"
- assertVisible: "Transfer.*"
127 changes: 87 additions & 40 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@mxenabled/react-native-widget-sdk",
"description": "MX React Native Widget SDK",
"version": "2.0.1",
"version": "2.0.2",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
Expand Down