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