Skip to content

Commit f3f8de9

Browse files
authored
fix: increase report timeout to 3 minutes (#135)
1 parent 08e8b23 commit f3f8de9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: support.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,8 @@ if (Cypress.env('coverage') === false) {
140140

141141
after(function generateReport() {
142142
// when all tests finish, lets generate the coverage report
143-
cy.task('coverageReport')
143+
cy.task('coverageReport', {
144+
timeout: Cypress.moment.duration(3, 'minutes').asMilliseconds()
145+
})
144146
})
145147
}

0 commit comments

Comments
 (0)