skip_group function

  1. @Deprecated('Dev only')
void skip_group(
  1. String description,
  2. void body(), {
  3. String? testOn,
  4. Timeout? timeout,
  5. dynamic skip,
  6. @Deprecated('Dev only') bool solo = false,
  7. Map<String, Object?>? onPlatform,
})

Skip the group temporarily mark as deprecated so that you don't checkin such code to permanently skip a group use the skip paremeter

Implementation

@Deprecated('Dev only')
void
// ignore: non_constant_identifier_names
skip_group(
  String description,
  void Function() body, {
  String? testOn,
  Timeout? timeout,
  skip,
  @Deprecated('Dev only') bool solo = false,
  Map<String, Object?>? onPlatform,
}) {
  testImplementation.group(
    description,
    body,
    testOn: testOn,
    timeout: timeout,
    skip: true,
    onPlatform: onPlatform,
    solo: solo,
  );
}