Skip to content

Commit

Permalink
Add a skip to an empty test group (flutter#5080)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
natebosch authored and HugoOlthof committed Dec 13, 2023
1 parent f91b890 commit 9fa26f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/flutter_markdown/test/emphasis_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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');
},
);
}

0 comments on commit 9fa26f1

Please sign in to comment.