This repository was archived by the owner on Feb 22, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
packages/integration_test Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ import 'package:integration_test_example/main.dart' as app;
14
14
15
15
void main () {
16
16
final IntegrationTestWidgetsFlutterBinding binding =
17
- IntegrationTestWidgetsFlutterBinding .ensureInitialized () as IntegrationTestWidgetsFlutterBinding ;
17
+ IntegrationTestWidgetsFlutterBinding .ensureInitialized ()
18
+ as IntegrationTestWidgetsFlutterBinding ;
18
19
testWidgets ('verify text' , (WidgetTester tester) async {
19
20
// Build our app and trigger a frame.
20
21
app.main ();
Original file line number Diff line number Diff line change @@ -206,7 +206,8 @@ class IntegrationTestWidgetsFlutterBinding
206
206
_vmService = vmService;
207
207
}
208
208
if (_vmService == null ) {
209
- final developer.ServiceProtocolInfo info = await developer.Service .getInfo ();
209
+ final developer.ServiceProtocolInfo info =
210
+ await developer.Service .getInfo ();
210
211
assert (info.serverUri != null );
211
212
_vmService = await vm_io.vmServiceConnectUri (
212
213
'ws://localhost:${info .serverUri .port }${info .serverUri .path }ws' ,
You can’t perform that action at this time.
0 commit comments