Unverified Commit ba8f0bbb authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

remove references to solo flag (#37856)

parent f98df595
......@@ -150,12 +150,6 @@ Future<void> _runSkippedTest(Suite suiteConfig, Test test, List<Group> parents,
///
/// If multiple platforms match, the annotations apply in order as through
/// they were in nested groups.
///
/// If the `solo` flag is `true`, only tests and groups marked as
/// 'solo' will be be run. This only restricts tests *within this test
/// suite*—tests in other suites will run as normal. We recommend that users
/// avoid this flag if possible and instead use the test runner flag `-n` to
/// filter tests by name.
@isTest
void test(
Object description,
......@@ -225,12 +219,6 @@ void test(
///
/// If multiple platforms match, the annotations apply in order as through
/// they were in nested groups.
///
/// If the `solo` flag is `true`, only tests and groups marked as
/// 'solo' will be be run. This only restricts tests *within this test
/// suite*—tests in other suites will run as normal. We recommend that users
/// 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, { dynamic skip }) {
_declarer.group(description.toString(), body, skip: skip);
......
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