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( ...@@ -232,8 +232,8 @@ void test(
/// avoid this flag if possible, and instead use the test runner flag `-n` to /// avoid this flag if possible, and instead use the test runner flag `-n` to
/// filter tests by name. /// filter tests by name.
@isTestGroup @isTestGroup
void group(Object description, Function body) { void group(Object description, Function body, { dynamic skip }) {
_declarer.group(description.toString(), body); _declarer.group(description.toString(), body, skip: skip);
} }
/// Registers a function to be run before tests. /// 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