I haven t used cypress v…

less than 1 minute read

I haven’t used cypress very extensively before switching to nx. Is there an advantage to cypress fixtures being json? seems like importing “fixtures” that are written in typescript would be much easier to make type safe?

Responses:

The fixtures are essentially response objects that cypress sends back through its mock server. I suspect to keep the server responses quick and lean, they went for a pure one to one mapping. You know, read and reply without any transforms

Updated: