Skip to content

Commit 2c6800e

Browse files
authored
Add a skip to an empty test group (#5080)
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. dart-lang/test#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.
1 parent ccda715 commit 2c6800e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/flutter_markdown/test/emphasis_test.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -4404,7 +4404,7 @@ void defineTests() {
44044404
//
44054405
// Test for rule 17 are not included since markdown package is not
44064406
// following the rule.
4407-
});
4407+
}, skip: 'No Rule 17 tests implemented');
44084408
},
44094409
);
44104410
}

0 commit comments

Comments
 (0)