Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
chore: increase timeout for key exchange import test (#1639)
Browse files Browse the repository at this point in the history
Observed to fail repeatedly on macOS

License: MIT
Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
  • Loading branch information
Alan Shaw authored Oct 18, 2018
1 parent fa55a8a commit 1461546
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/core/key-exchange.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ describe('key exchange', () => {
})
})

it('imports', (done) => {
it('imports', function (done) {
this.timeout(20 * 1000)

ipfs.key.import('clone', selfPem, passwordPem, (err, key) => {
expect(err).to.not.exist()
expect(key).to.exist()
Expand Down

0 comments on commit 1461546

Please sign in to comment.