delete method
Makes a DELETE request to the given path.
Implementation
Future<TestResponse> delete(String path, {Map<String, String>? headers}) async {
await _ensureStarted();
final res = await http.delete(Uri.parse('http://localhost:$_port$path'), headers: headers);
return TestResponse(res);
}