diff --git a/e2e/deeplinks.spec.js b/e2e/deeplinks.spec.js index 94835b38fe0..3dae8513620 100644 --- a/e2e/deeplinks.spec.js +++ b/e2e/deeplinks.spec.js @@ -119,28 +119,36 @@ describe('Deeplinks spec', () => { await testEthereumDeeplink(url, false); }); - it.skip('should be able to handle ethereum payments urls for DAI (mainnet)', async () => { + // FIXME: when doing open deeplinks with cold start, the account assets state + // comes back empty, find a fix and then change these tests to cold-start again + it('should be able to handle ethereum payments urls for DAI (mainnet)', async () => { const url = escapeUrl( 'ethereum:0x6b175474e89094c44da98b954eedeac495271d0f@1/transfer?address=brunobarbieri.eth&uint256=1e18' ); - await testEthereumDeeplink(url); + await testEthereumDeeplink(url, false); }); - it.skip('should be able to handle ethereum payments urls for ETH (arbitrum)', async () => { + // FIXME: when doing open deeplinks with cold start, the account assets state + // comes back empty, find a fix and then change these tests to cold-start again + it('should be able to handle ethereum payments urls for ETH (arbitrum)', async () => { const url = 'ethereum:payment-brunobarbieri.eth@42161?value=1e15'; - await testEthereumDeeplink(url); + await testEthereumDeeplink(url, false); }); - it.skip('should be able to handle ethereum payments urls for DAI (optimism)', async () => { + // FIXME: when doing open deeplinks with cold start, the account assets state + // comes back empty, find a fix and then change these tests to cold-start again + it('should be able to handle ethereum payments urls for DAI (optimism)', async () => { const url = escapeUrl( 'ethereum:0xda10009cbd5d07dd0cecc66161fc93d7c9000da1@10/transfer?address=brunobarbieri.eth&uint256=1e15' ); - await testEthereumDeeplink(url); + await testEthereumDeeplink(url, false); }); - it.skip('should be able to handle ethereum payments urls for MATIC (polygon)', async () => { + // FIXME: when doing open deeplinks with cold start, the account assets state + // comes back empty, find a fix and then change these tests to cold-start again + it('should be able to handle ethereum payments urls for MATIC (polygon)', async () => { const url = escapeUrl('ethereum:payment-brunobarbieri.eth@137?value=1e15'); - await testEthereumDeeplink(url); + await testEthereumDeeplink(url, false); }); afterAll(async () => {