Cypress ReadFile冻结Cypress窗口

Cypress ReadFile冻结Cypress窗口,cypress,cypress-cucumber-preprocessor,Cypress,Cypress Cucumber Preprocessor,Cypress窗口在cy.readFile行冻结,但在后台继续执行,至少需要100秒才能完成,然后解冻Cypress窗口。是否有人面临这个问题以及如何解决?谢谢 cy.readFile('sample.csv','binary', {log: true, timeout: 5000 }) .then(neatCSV) .then((data) => { //then compare data with table in the application })

Cypress窗口在cy.readFile行冻结,但在后台继续执行,至少需要100秒才能完成,然后解冻Cypress窗口。是否有人面临这个问题以及如何解决?谢谢

cy.readFile('sample.csv','binary', {log: true, timeout: 5000 })
  .then(neatCSV)
  .then((data) => { //then compare data with table in the application })