From aa21712a837a5cf49cf0cc13bb7834a9837617c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Pupier?= Date: Tue, 18 Feb 2025 16:43:46 +0100 Subject: [PATCH] Increase timeout in unit test when creating route from open api file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit it sometimes fails on CI Signed-off-by: Aurélien Pupier --- src/test/suite/camel.openapi.command.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/suite/camel.openapi.command.test.ts b/src/test/suite/camel.openapi.command.test.ts index 0481c826..04e61e25 100644 --- a/src/test/suite/camel.openapi.command.test.ts +++ b/src/test/suite/camel.openapi.command.test.ts @@ -34,6 +34,7 @@ describe('Should execute Create a route from open api command', function () { const fullFileName = `${fileName}.camel.yaml`; beforeEach(async function () { + this.timeout(200000); showOpenDialogStub = sinon.stub(vscode.window, 'showOpenDialog'); showInputBoxStub = sinon.stub(vscode.window, 'showInputBox'); });