forked from wix/Detox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: architecture deep dive (wix#132)
- Loading branch information
1 parent
af7cba7
commit e2a3cc9
Showing
5 changed files
with
43 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
sequenceDiagram | ||
participant Test Runner(1) | ||
participant Tester(3) | ||
participant Detox Server(5) | ||
participant Testee(7) | ||
participant Earl Grey(9) | ||
|
||
%% Note over Test Runner(1),Detox Server(5): Runs on your computer | ||
%% Note over Testee(7),Earl Grey(9): Runs on the device | ||
|
||
Test Runner(1)->>Tester(3): assertion / action (2) | ||
Tester(3)->>Detox Server(5): native code as JSON (4) | ||
Detox Server(5)->>Testee(7): Websocket connection (6) | ||
Testee(7)-x+Earl Grey(9): native invocation (8) | ||
Note left of Earl Grey(9): EarlGrey waits for device to become idle again | ||
Earl Grey(9)->>-Testee(7): (10) | ||
Testee(7)->>Detox Server(5): (11) | ||
Detox Server(5)->>Tester(3): (12) | ||
Tester(3)->>Test Runner(1): (13) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/sh | ||
|
||
mermaid -o '../img' *.mmd |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.