Unverified Commit 275769b8 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

Add skip to group in test_compat (#29236)

parent 88a477ca
......@@ -232,8 +232,8 @@ void test(
/// avoid this flag if possible, and instead use the test runner flag `-n` to
/// filter tests by name.
@isTestGroup
void group(Object description, Function body) {
_declarer.group(description.toString(), body);
void group(Object description, Function body, { dynamic skip }) {
_declarer.group(description.toString(), body, skip: skip);
}
/// Registers a function to be run before tests.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment