Skip to content

Commit

Permalink
Fix failing UI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
abhikdps committed Dec 30, 2024
1 parent 4dbd39c commit f6793c6
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion test/ui-test/terminalUiTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ import {
VSBrowser,
SettingsEditor,
} from "vscode-extension-tester";
import { getFixturePath, updateSettings, sleep } from "./uiTestHelper";
import {
getFixturePath,
updateSettings,
sleep,
workbenchExecuteCommand,
} from "./uiTestHelper";

config.truncateThreshold = 0;

Expand Down Expand Up @@ -61,6 +66,8 @@ describe("Verify the execution of playbook using ansible-navigator command", ()
const file = "playbook.yml";
const playbookFile = getFixturePath(folder, file);
before(async function () {
await workbenchExecuteCommand("Ansible: Install Ansible Development Tools");
await sleep(2000);
workbench = new Workbench();
});
// Skip this test on macOS due to CI container settings
Expand Down

0 comments on commit f6793c6

Please sign in to comment.