solo_group function
Run the group solo temporarily mark as deprecated so that you don't checkin such code
Implementation
@Deprecated('Dev only')
void
// ignore: non_constant_identifier_names
solo_group(
String description,
void Function() body, {
String? testOn,
Timeout? timeout,
Object? skip,
@Deprecated('Dev only') bool solo = false,
Map<String, Object?>? onPlatform,
}) {
testImplementation.group(
description,
body,
testOn: testOn,
timeout: timeout,
skip: skip,
onPlatform: onPlatform,
solo: true,
);
}