Skip to content

Commit

Permalink
test(e2e): do not re-select outputview
Browse files Browse the repository at this point in the history
Signed-off-by: Zacharias Fragkiadakis <zacfragkiadakis@gmail.com>
  • Loading branch information
QZera committed Dec 31, 2024
1 parent 70a70e1 commit b624285
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions test/e2e/specs/settings.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ describe('Settings', () => {
settings = await workbench.openSettings()

await workbench.executeCommand('Show Everything Logged in the Output Panel')
let outputView = await workbench.getBottomBar().openOutputView()
const outputView = await workbench.getBottomBar().openOutputView()
await outputView.selectChannel('Radicle')
await outputView.clearText()

Expand All @@ -103,9 +103,8 @@ describe('Settings', () => {
await setTextSettingValue(pathToNodeHomeSetting, '/tmp')

// Assert that the error message is displayed in the output console
outputView = await workbench.getBottomBar().openOutputView()
await outputView.selectChannel('Radicle')

// outputView = await workbench.getBottomBar().openOutputView()
// await outputView.selectChannel('Radicle')
await browser.waitUntil(
async () => {
const text = await outputView.getText()
Expand Down

0 comments on commit b624285

Please sign in to comment.