We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 743e5cb + 1ca1501 commit 891f9e1Copy full SHA for 891f9e1
packages/core/src/test/shared/utilities/pathFind.test.ts
@@ -62,13 +62,11 @@ describe('pathFind', function () {
62
const fakeSshPath = path.join(workspace.uri.fsPath, `ssh`)
63
64
process.env.PATH = workspace.uri.fsPath
65
- const firstResult = await findSshPath(false)
66
67
await testutil.createExecutableFile(fakeSshPath, '')
68
69
const secondResult = await findSshPath(false)
70
71
- assert.notStrictEqual(firstResult, secondResult)
72
assert.strictEqual(secondResult, 'ssh')
73
})
74
0 commit comments