From 172d2af5c2b1d940f90929e1a157ef475d099b6d Mon Sep 17 00:00:00 2001 From: Filip Pospisil Date: Tue, 7 Nov 2023 11:08:15 +0100 Subject: [PATCH] FUSETOOLS2-2065: Provide tests for completion inside tasks.json --- src/ui-test/tests/tasks.json.autocompletion.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ui-test/tests/tasks.json.autocompletion.test.ts b/src/ui-test/tests/tasks.json.autocompletion.test.ts index 8078601f..800be6ea 100644 --- a/src/ui-test/tests/tasks.json.autocompletion.test.ts +++ b/src/ui-test/tests/tasks.json.autocompletion.test.ts @@ -31,7 +31,8 @@ describe('Completion inside tasks.json', function () { it(`${command}`, async function () { await openFileInEditor(driver, RESOURCES, TASKS_TEST_FILE); textEditor = await activateEditor(driver, TASKS_TEST_FILE); - await textEditor.setTextAtLine(6, " "); // prevent failure + // workaround for https://github.com/redhat-developer/vscode-extension-tester/issues/931 + await textEditor.setTextAtLine(6, " "); await textEditor.moveCursor(6, 9); await selectFromCA(command); const text = await textEditor.getText();