From a0d651c235ba6d0ed25be79cbf8648d30363d66a Mon Sep 17 00:00:00 2001 From: Alex Potsides Date: Thu, 14 Mar 2024 09:52:48 +0100 Subject: [PATCH] chore: retry dnslink tests (#469) These tests are flaky in CI so add a retry --- packages/interop/src/ipns-dnslink.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/interop/src/ipns-dnslink.spec.ts b/packages/interop/src/ipns-dnslink.spec.ts index 867ec96c4..d8570f725 100644 --- a/packages/interop/src/ipns-dnslink.spec.ts +++ b/packages/interop/src/ipns-dnslink.spec.ts @@ -40,6 +40,6 @@ describe('@helia/ipns - dnslink', () => { const result = await name.resolveDNSLink(domain) expect(result).to.have.property('cid') - }) + }).retries(5) }) })