We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55aa7c0 commit e3385ffCopy full SHA for e3385ff
1 file changed
packages/share_plus/share_plus/example/test_driver/share_plus_test.dart
@@ -9,8 +9,10 @@ import 'package:flutter_driver/flutter_driver.dart';
9
10
Future<void> main() async {
11
final driver = await FlutterDriver.connect();
12
- final data =
13
- await driver.requestData(null, timeout: const Duration(minutes: 1));
+ final data = await driver.requestData(
+ null,
14
+ timeout: const Duration(minutes: 1),
15
+ );
16
await driver.close();
17
final Map<String, dynamic> result = jsonDecode(data);
18
exit(result['result'] == 'true' ? 0 : 1);
0 commit comments