Group<GroupContext extends Context>.skip constructor

Group<GroupContext extends Context>.skip(
  1. String _title,
  2. List<Contextual<GroupContext>> children, {
  3. FutureOr<void> setup(
    1. GroupContext test
    )?,
  4. FutureOr<void> teardown(
    1. GroupContext test
    )?,
  5. FutureOr<GroupContext> contextBuilder()?,
  6. TestOptions? options,
})

Skipped. This will not run any of the stages or children within this group.

Implementation

Group.skip(
  super._title,
  super.children, {
  super.setup,
  super.teardown,
  super.contextBuilder,
  super.options,
}) : super(skip: true);