Skip to content

Commit

Permalink
FUSETOOLS2-2065: Provide tests for completion inside tasks.json
Browse files Browse the repository at this point in the history
  • Loading branch information
pospisilf committed Nov 7, 2023
1 parent 129518a commit 172d2af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ui-test/tests/tasks.json.autocompletion.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 172d2af

Please sign in to comment.