UNPKG

@kubb/plugin-cypress

Version:

Cypress test generator plugin for Kubb, creating end-to-end tests from OpenAPI specifications for automated API testing.

9 lines (7 loc) 277 B
/** * Generated by Kubb (https://kubb.dev/). * Do not edit manually. */ export function showPetById(): Cypress.Chainable<ShowPetByIdQueryResponse> { return cy.request('get', '/pets/:petId', undefined).then((res: Cypress.Response<ShowPetByIdQueryResponse>) => res.body) }