Skip to content

Commit

Permalink
addressing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kgartland-rstudio committed Sep 19, 2024
1 parent abeadf5 commit 717b39e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,7 @@
:class="codicon"
/>
<div class="tree-item-label-container">
<span class="tree-item-title" :data-automation="`req`">{{
title
}}</span>
<span class="tree-item-title" data-automation="req">{{ title }}</span>
<span v-if="description" class="tree-item-description">
{{ description }}
</span>
Expand Down
4 changes: 2 additions & 2 deletions test/vscode-ui/test/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ export async function switchToSubframe() {
const iframe = await browser.$("iframe");
await browser.switchToFrame(iframe);

await browser.$("iframe").waitForExist({ timeout: 10000 });
await browser.$("iframe").waitForExist({ timeout: 3000 });
const subiframe = await browser.$("iframe");
await subiframe.waitForExist({ timeout: 10000 });
await subiframe.waitForExist({ timeout: 3000 });
await browser.switchToFrame(subiframe);
}

Expand Down
1 change: 0 additions & 1 deletion test/vscode-ui/wdio.conf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ export const config: Options.Testrunner = {
ui: "bdd",
timeout: 60000,
},
// wdio.conf.js
//
// =====
// Hooks
Expand Down

0 comments on commit 717b39e

Please sign in to comment.