From 3568b6d92f29710c8d1134f0a1c0f8b1a2b91ad4 Mon Sep 17 00:00:00 2001 From: Marcin Mielnicki Date: Fri, 20 Dec 2024 18:05:37 +0100 Subject: [PATCH] Increase test timeout to 5min --- .../MermaidGanttDiagramFormatterToSvgConversionSpec.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/functionalTest/groovy/io/github/platan/tests_execution_chart/reporters/mermaid/MermaidGanttDiagramFormatterToSvgConversionSpec.groovy b/src/functionalTest/groovy/io/github/platan/tests_execution_chart/reporters/mermaid/MermaidGanttDiagramFormatterToSvgConversionSpec.groovy index 17b2192..dc61fc7 100644 --- a/src/functionalTest/groovy/io/github/platan/tests_execution_chart/reporters/mermaid/MermaidGanttDiagramFormatterToSvgConversionSpec.groovy +++ b/src/functionalTest/groovy/io/github/platan/tests_execution_chart/reporters/mermaid/MermaidGanttDiagramFormatterToSvgConversionSpec.groovy @@ -41,7 +41,7 @@ class MermaidGanttDiagramFormatterToSvgConversionSpec extends Specification { then: process.consumeProcessOutput(processOutput, processError) - process.waitForOrKill(60000) + process.waitForOrKill(300000) assert process.exitValue() == 0, "Process finished with exit code ${process.exitValue()}\nOutput: $processOutput\nError: $processError" }