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 2bfb019 commit 553f9daCopy full SHA for 553f9da
pkg/pub_worker/test/dockerized_end2end_test.dart
@@ -75,9 +75,14 @@ void main() {
75
final version = versions[i];
76
final result = await server.waitForResult(package, version);
77
78
+ final logTxtBytes = result.lookup('log.txt');
79
+ final logTxt = logTxtBytes == null
80
+ ? '[no log.txt]'
81
+ : utf8.decode(gzip.decode(logTxtBytes));
82
+
83
final docIndex = result.index.lookup('doc/index.html');
84
expect(docIndex, isNotNull,
- reason: '$package must have documentation');
85
+ reason: '$package must have documentation, see log:\n$logTxt');
86
87
final panaSummaryBytes = result.lookup('summary.json');
88
expect(panaSummaryBytes, isNotNull);
0 commit comments