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 667281e commit f5cbc08Copy full SHA for f5cbc08
test/test_pub.dart
@@ -728,6 +728,12 @@ void _validateOutputJson(
728
failures.add(actualText);
729
}
730
731
+ // Remove dart2js's timing logs, which would otherwise cause tests to fail
732
+ // flakily when compilation takes a long time.
733
+ actual['log']?.removeWhere((entry) =>
734
+ entry['level'] == 'Fine' &&
735
+ entry['message'].startsWith('Not yet complete after'));
736
+
737
// Match against the expectation.
738
expect(actual, expected);
739
0 commit comments