UNPKG

@kubb/plugin-cypress

Version:

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

15 lines (13 loc) 396 B
/** * Generated by Kubb (https://kubb.dev/). * Do not edit manually. */ export function showPetById(petId: ShowPetByIdPathParams['petId'], options: Partial<Cypress.RequestOptions> = {}): Cypress.Chainable<ShowPetByIdQueryResponse> { return cy .request<ShowPetByIdQueryResponse>({ method: 'get', url: `/pets/${petId}`, ...options, }) .then((res) => res.body) }