@reactiive/ennio 0.0.1 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +22 -4
- package/cpp/HybridEnnio.cpp +0 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,17 +14,28 @@ UITouch that half-fires recognizers — the gesture goes through the same
|
|
|
14
14
|
path a finger would.
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
bun add @reactiive/ennio react-native-nitro-modules
|
|
18
|
+
bun add -d @reactiive/ennio-expo-plugin
|
|
19
|
+
|
|
20
|
+
bunx ennio test e2e/01-auth-flow.yaml # one flow
|
|
21
|
+
bunx ennio test e2e/ # every *.yaml in the directory
|
|
20
22
|
```
|
|
21
23
|
|
|
24
|
+
(Or use the equivalent `npm install` / `yarn add` — `ennio-expo-plugin`
|
|
25
|
+
is a build-time config plugin, so it belongs in `devDependencies`.)
|
|
26
|
+
|
|
22
27
|
## Requirements
|
|
23
28
|
|
|
24
29
|
- Expo app on React Native ≥ 0.81 (New Architecture, Fabric)
|
|
25
30
|
- iOS 17+ simulator
|
|
26
31
|
- Xcode 16+, Node 18+
|
|
27
|
-
- `
|
|
32
|
+
- Facebook's `idb` toolchain — gRPC server + Python client (the
|
|
33
|
+
HID daemon imports the `idb` python package):
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
brew install facebook/fb/idb-companion
|
|
37
|
+
pip3 install fb-idb
|
|
38
|
+
```
|
|
28
39
|
|
|
29
40
|
## Setup
|
|
30
41
|
|
|
@@ -48,3 +59,10 @@ example flows live in the [monorepo README](https://github.com/enzomanuelmangano
|
|
|
48
59
|
## License
|
|
49
60
|
|
|
50
61
|
MIT
|
|
62
|
+
|
|
63
|
+
## Trademarks
|
|
64
|
+
|
|
65
|
+
Maestro is a trademark of mobile.dev. Ennio is an independent
|
|
66
|
+
project, not affiliated with mobile.dev. References to "Maestro"
|
|
67
|
+
describe only the YAML flow format that Ennio consumes; no Maestro
|
|
68
|
+
source code is bundled or redistributed.
|
package/cpp/HybridEnnio.cpp
CHANGED
|
@@ -535,7 +535,6 @@ static const std::unordered_map<std::string, HandlerFn>& commandHandlers() {
|
|
|
535
535
|
r.success = self->pasteFromClipboard(::ennio::json::parseString(req.payload, "testID"));
|
|
536
536
|
}},
|
|
537
537
|
};
|
|
538
|
-
(void)helper; // suppress unused-capture-style warnings on some compilers.
|
|
539
538
|
return handlers;
|
|
540
539
|
}
|
|
541
540
|
|