From c726e8feae6c019d14238fbaac9e147a5a6b2945 Mon Sep 17 00:00:00 2001 From: Gleb Bahmutov Date: Tue, 11 Feb 2020 10:30:06 -0500 Subject: [PATCH] fix: increase report timeout to 3 minutes --- support.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/support.js b/support.js index 20247a4d..03b45a03 100644 --- a/support.js +++ b/support.js @@ -140,6 +140,8 @@ if (Cypress.env('coverage') === false) { after(function generateReport() { // when all tests finish, lets generate the coverage report - cy.task('coverageReport') + cy.task('coverageReport', { + timeout: Cypress.moment.duration(3, 'minutes').asMilliseconds() + }) }) }