@@ -113,7 +113,7 @@ void main() {
113
113
final process = await testRunner.runWebDev (args,
114
114
workingDirectory: soundExampleDirectory);
115
115
116
- await checkProcessStdout (process, ['Succeeded ' ]);
116
+ await checkProcessStdout (process, ['Writing asset manifest completed ' ]);
117
117
await process.shouldExit (0 );
118
118
},
119
119
// https://github.com/dart-lang/webdev/issues/2489,
@@ -133,7 +133,7 @@ void main() {
133
133
final process = await testRunner.runWebDev (args,
134
134
workingDirectory: soundExampleDirectory);
135
135
136
- final expectedItems = < Object > ['Succeeded ' ];
136
+ final expectedItems = < Object > ['Writing asset manifest completed ' ];
137
137
138
138
await checkProcessStdout (process, expectedItems);
139
139
await process.shouldExit (0 );
@@ -166,7 +166,7 @@ void main() {
166
166
final process = await testRunner.runWebDev (args,
167
167
workingDirectory: soundExampleDirectory);
168
168
169
- final expectedItems = < Object > ['Succeeded ' ];
169
+ final expectedItems = < Object > ['Writing asset manifest completed ' ];
170
170
171
171
await checkProcessStdout (process, expectedItems);
172
172
await process.shouldExit (0 );
@@ -189,7 +189,9 @@ void main() {
189
189
final process = await testRunner.runWebDev (args,
190
190
workingDirectory: soundExampleDirectory);
191
191
192
- final expectedItems = < Object > ['Succeeded' ];
192
+ final expectedItems = < Object > [
193
+ 'Caching finalized dependency graph completed'
194
+ ];
193
195
194
196
await checkProcessStdout (process, expectedItems);
195
197
await process.shouldExit (0 );
@@ -215,7 +217,10 @@ void main() {
215
217
final hostUrl = 'http://localhost:$openPort ' ;
216
218
217
219
// Wait for the initial build to finish.
218
- await expectLater (process.stdout, emitsThrough (contains ('Succeeded' )));
220
+ await expectLater (
221
+ process.stdout,
222
+ emitsThrough (
223
+ contains ('Caching finalized dependency graph completed' )));
219
224
220
225
final client = HttpClient ();
221
226
0 commit comments