Skip to content

Commit

Permalink
test(e2e): use more precise selectors when finding settings
Browse files Browse the repository at this point in the history
Signed-off-by: Zacharias Fragkiadakis <[email protected]>
  • Loading branch information
QZera committed Jan 22, 2025
1 parent 1e20b85 commit a2e4e4f
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions test/e2e/specs/settings.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,7 @@ describe('Settings', () => {
let pathToRadBinarySetting: Setting

before(async () => {
pathToRadBinarySetting = await settings.findSetting(
'Path To Rad Binary',
'Radicle',
'Advanced',
)
pathToRadBinarySetting = await settings.findSetting('radicle.advanced.pathToRadBinary')
})

after(async () => {
Expand Down Expand Up @@ -100,11 +96,7 @@ describe('Settings', () => {
let outputView: OutputView

before(async () => {
pathToNodeHomeSetting = await settings.findSetting(
'Path To Node Home',
'Radicle',
'Advanced',
)
pathToNodeHomeSetting = await settings.findSetting('radicle.advanced.pathToNodeHome')
await workbench.executeCommand('Show Everything Logged in the Output Panel')
outputView = await workbench.getBottomBar().openOutputView()
})
Expand Down

0 comments on commit a2e4e4f

Please sign in to comment.