From 931cf77601b15dd260d57731c63218cd535127a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Pupier?= Date: Tue, 18 Feb 2025 16:27:23 +0100 Subject: [PATCH] Increase timeout in UI tests to let time to open transformed route MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit on CI, it sometimes takes more time Signed-off-by: Aurélien Pupier --- src/ui-test/tests/11_commands.transform.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui-test/tests/11_commands.transform.test.ts b/src/ui-test/tests/11_commands.transform.test.ts index 6534c054..ec39aad6 100644 --- a/src/ui-test/tests/11_commands.transform.test.ts +++ b/src/ui-test/tests/11_commands.transform.test.ts @@ -73,7 +73,7 @@ describe('Transform Camel Routes to YAML using commands', function () { await input.setText(INPUT_FILENAME); await input.confirm(); - await waitUntilEditorIsOpened(driver, FILENAME_CREATED_FROM_CAMEL_TRANSFORM, 45000); + await waitUntilEditorIsOpened(driver, FILENAME_CREATED_FROM_CAMEL_TRANSFORM, 90000, 10000); const tree: DefaultTreeSection = await sideBar.getContent().getSection('camel_transform_command'); const items = await tree.getVisibleItems();