How can add wait in cy.task() functions like validateZipFile and getZipFileSize in the cypress.config.js – Javascript
How can add wait in following cy.task() functions like validateZipFile and getZipFileSize in the in the cypress.config.js file ? test.spec.js cy.get('button[type="submit"]').contains("Download").click({force:true}); helperFunctions.validateZip("Booking Results Resource Pack - Task"); // helperFunctions.js validateZip (text) { const dfilename = text.replace(/-|_|s/g,""); const downloadedFilename = dfilename+"ZipFile.zip";…