I want to upload a large file ~1GB to my nodejs Server by using cypress-file-upload. This is my code for uploading the file: cy.get('input[type=“file“').attachFile('1GB-File');
The following error message appears: cypress-file-upload error
This happens due to the limitation of memory usage for readFile. On production the file upload is done by websocket streams. How can I handle the e2e Test here. Is there any other chance to get this working?
0 Replies