Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions test/ui-test/customTagsTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,9 @@ export function customTagsTest(): void {

await hardDelay(2000);
const textSettingsEditor = (await editorView.openEditor('settings.json')) as TextEditor;
if (process.platform === 'darwin') {
await driver.actions().sendKeys(' "customTag1"').perform();
} else {
const coor = await textSettingsEditor.getCoordinates();
await textSettingsEditor.typeTextAt(coor[0], coor[1], ' "customTag1"');
}

const coor = await textSettingsEditor.getCoordinates();
await textSettingsEditor.typeTextAt(coor[0], coor[1], ' "customTag1"');
await textSettingsEditor.save();
await hardDelay(1_000);

Expand Down
2 changes: 1 addition & 1 deletion test/ui-test/extensionUITest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export function extensionUIAssetsTest(): void {
driver = VSBrowser.instance.driver;
view = await new ActivityBar().getViewControl('Extensions');
sideBar = await view.openView();
driver.wait(
await driver.wait(
async () => !(await sideBar.getContent().hasProgress()),
5000,
"Progress bar hasn't been hidden within the timeout"
Expand Down
Loading