Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

fix: allow retries for DNS test due to dependence on external services #352

Merged
merged 1 commit into from
Aug 16, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions js/src/miscellaneous/dns.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ module.exports = (createCommon, options) => {

it('should resolve a DNS link', function (done) {
this.timeout(20 * 1000)
this.retries(3)

ipfs.dns('ipfs.io', (err, path) => {
expect(err).to.not.exist()
Expand Down