From fe8da04b634229e2c7c91d36fa2830609f434433 Mon Sep 17 00:00:00 2001 From: Nate Bosch Date: Fri, 6 Oct 2023 00:28:25 +0000 Subject: [PATCH] Add a `skip` to an empty test group The empty group will soon become a warning or an error. Eagerly skip the group to avoid any issue when the test runner changes behavior. https://github.com/dart-lang/test/pull/2012 Note that the linked issue has been resolved, and the comment in this group body may be out of date. This change will impact the output from running tests - there will be an indication of the skipped test. --- packages/flutter_markdown/test/emphasis_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter_markdown/test/emphasis_test.dart b/packages/flutter_markdown/test/emphasis_test.dart index fb247539af7..c0891c22b6c 100644 --- a/packages/flutter_markdown/test/emphasis_test.dart +++ b/packages/flutter_markdown/test/emphasis_test.dart @@ -4404,7 +4404,7 @@ void defineTests() { // // Test for rule 17 are not included since markdown package is not // following the rule. - }); + }, skip: 'No Rule 17 tests implemented'); }, ); }