diff --git a/test/e2e/mock-e2e.js b/test/e2e/mock-e2e.js index 7dca8887c513..bef044b4e5da 100644 --- a/test/e2e/mock-e2e.js +++ b/test/e2e/mock-e2e.js @@ -577,6 +577,17 @@ async function setupMocking(server, testSpecificMock, { chainId }) { await mockLensNameProvider(server); await mockTokenNameProvider(server, chainId); + // IPFS endpoint for NFT metadata + await server + .forGet( + 'https://bafybeidxfmwycgzcp4v2togflpqh2gnibuexjy4m4qqwxp7nh3jx5zlh4y.ipfs.dweb.link/1.json', + ) + .thenCallback(() => { + return { + statusCode: 200, + }; + }); + /** * Returns an array of alphanumerically sorted hostnames that were requested * during the current test suite.