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 40ed8d4 commit 4ba88abCopy full SHA for 4ba88ab
pkg/pub_integration/lib/src/test_browser.dart
@@ -242,13 +242,13 @@ class TestBrowserSession {
242
if (rs.status == 200 && contentType!.contains('text/html')) {
243
try {
244
parseAndValidateHtml(await rs.text);
245
- } catch (e) {
+ } catch (e, st) {
246
final url = rs.request.url;
247
if (url.contains('/documentation/') &&
248
url.endsWith('-sidebar.html')) {
249
// ignore dartdoc sidebars
250
} else {
251
- serverErrors.add('$url returned bad HTML: $e');
+ serverErrors.add('$url returned bad HTML: $e\n$st');
252
}
253
254
0 commit comments