Skip to content

Commit 4702f7d

Browse files
committed
more tests
1 parent 575b2c4 commit 4702f7d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/ssh_agent_client.spec.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ describe('SSHAgentClient Tests', () => {
1414
it('should find identites', async () => {
1515
const agent = new SSHAgentClient()
1616
const identities = await agent.requestIdentities()
17-
assert.equal(3, identities.length)
17+
assert.equal(identities.length, 3)
18+
const identity = identities[0]
19+
assert.equal(identity.type, '')
20+
assert.equal(identity.key, '')
21+
assert.equal(identity.comment, '')
1822
})
1923
})

0 commit comments

Comments
 (0)