I work on a vite app that communicate with the server through a grpc api with authentification.
To avoid to initialise data needed for the test and delete this data using e2e cypress commands, because time and performance consuming and not useful in my case (these steps are already tested elsewhere), I would like create and delete this data directly using the api (this is also a good practice cypress).
I know do that with a rest api using cy.request, but don’t find the way for grpc api.
Has anyone done this before or have any suggestions?