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) 300 B
/** * Generated by Kubb (https://kubb.dev/). * Do not edit manually. */ export function createPets(data: CreatePetsMutationRequest): Cypress.Chainable<CreatePetsMutationResponse> { return cy.request('post', '/pets', data).then((res: Cypress.Response<CreatePetsMutationResponse>) => res.body) }