cypress-autorecord icon indicating copy to clipboard operation
cypress-autorecord copied to clipboard

Simplify API mocking by auto-recording/stubbing HTTP interactions and automating the process of updating/deleting mocks.

Results 31 cypress-autorecord issues
Sort by recently updated
recently updated
newest added

When running all specs, the mocks are recorded in a new file called "All Specs". This pull request attempts to find the filename based on the currentTest invocation details. AFAIK...

For some reason when using this plugin, I get the following error in my tests: ``` CypressError: `cy.visit()` failed trying to load: http://localhost:3000/search The `content-type` of the response we received...

Bumps [moment](https://github.com/moment/moment) from 2.29.1 to 2.29.4. Changelog Sourced from moment's changelog. 2.29.4 Release Jul 6, 2022 #6015 [bugfix] Fix ReDoS in preprocessRFC2822 regex 2.29.3 Full changelog Release Apr 17, 2022...

dependencies

Bumps [async](https://github.com/caolan/async) from 3.2.0 to 3.2.4. Changelog Sourced from async's changelog. v3.2.4 Fix a bug in priorityQueue where it didn't wait for the result. (#1725) Fix a bug where unshiftAsync...

dependencies

Fixes #60 Note, this feature requires #67 to be in to work effectively, so it has been merged into this PR.

Here is the code that sends the stubbed responses: ``` (req) => { return req.reply((res) => { const newResponse = sortedRoutes[method][url][index]; res.send( newResponse.status, newResponse.fixtureId ``` The docs of .reply() are:...

Readme states "Version 3 is now compatible with Cypress 6 and 7 "... Current version is 9.4.0, is that supported?

Hello, (I repost it in a new issue rather than the old one #54) When autorecord stubs requests with responses of big size, it returns the path of the fixture...