[go: nahoru, domu]

Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Rename instrumentation_adapter plugin to e2e plugin #2161

Merged
merged 21 commits into from
Oct 8, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Demonstrate reading the exit code
  • Loading branch information
collinjackson committed Oct 7, 2019
commit 6a58fffd407faa100222ab7166f7d4db513154c2
1 change: 1 addition & 0 deletions packages/e2e/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Future<void> main() async {
final FlutterDriver driver = await FlutterDriver.connect();
await driver.requestData(null, timeout: const Duration(minutes: 1));
driver.close();
exit(result == 'pass' ? 0 : 1);
}
```

Expand Down
1 change: 1 addition & 0 deletions packages/e2e/example/test_driver/example_e2e_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ Future<void> main() async {
final FlutterDriver driver = await FlutterDriver.connect();
await driver.requestData(null, timeout: const Duration(minutes: 1));
driver.close();
exit(result == 'pass' ? 0 : 1);
}