@@ -60,14 +60,18 @@ void main() {
60
60
61
61
final String output = _uniqueOutputLines (outputEvents);
62
62
63
- expectLines (output, < Object > [
63
+ expectLines (
64
+ output,
65
+ < Object > [
64
66
'Launching $relativeMainPath on Flutter test device in debug mode...' ,
65
- startsWith ('Connecting to VM Service at' ),
66
- 'topLevelFunction' ,
67
- 'Application finished.' ,
68
- '' ,
69
- startsWith ('Exited' ),
70
- ]);
67
+ startsWith ('Connecting to VM Service at' ),
68
+ 'topLevelFunction' ,
69
+ 'Application finished.' ,
70
+ '' ,
71
+ startsWith ('Exited' ),
72
+ ],
73
+ allowExtras: true ,
74
+ );
71
75
});
72
76
73
77
testWithoutContext ('logs to client when sendLogsToClient=true' , () async {
@@ -125,13 +129,17 @@ void main() {
125
129
126
130
final String output = _uniqueOutputLines (outputEvents);
127
131
128
- expectLines (output, < Object > [
129
- 'Launching $relativeMainPath on Flutter test device in debug mode...' ,
130
- 'topLevelFunction' ,
131
- 'Application finished.' ,
132
- '' ,
133
- startsWith ('Exited' ),
134
- ]);
132
+ expectLines (
133
+ output,
134
+ < Object > [
135
+ 'Launching $relativeMainPath on Flutter test device in debug mode...' ,
136
+ 'topLevelFunction' ,
137
+ 'Application finished.' ,
138
+ '' ,
139
+ startsWith ('Exited' ),
140
+ ],
141
+ allowExtras: true ,
142
+ );
135
143
136
144
// If we're running with an out-of-process debug adapter, ensure that its
137
145
// own process shuts down after we terminated.
@@ -246,6 +254,7 @@ void main() {
246
254
startsWith ('Reloaded' ),
247
255
'topLevelFunction' ,
248
256
],
257
+ allowExtras: true ,
249
258
);
250
259
251
260
await dap.client.terminate ();
@@ -320,6 +329,7 @@ void main() {
320
329
startsWith ('Restarted application' ),
321
330
'topLevelFunction' ,
322
331
],
332
+ allowExtras: true ,
323
333
);
324
334
325
335
await dap.client.terminate ();
0 commit comments