Pawel Andruszkow
Pawel Andruszkow
looks like cypress has a problem with resolving promise from setupMetamask task ``` setupMetamask: async ({ secretWordsOrPrivateKey, network = 'kovan', password, }) => { if (process.env.NETWORK_NAME) { network = process.env.NETWORK_NAME;...
ok, after tons of debugging I found that `setupMetamask` is invoked twice, dunno why :/ I modified `cypress/commands/metamask.js` ``` let isInitialSetupDone = false; ... initialSetup: async ({ secretWordsOrPrivateKey, network, password...
+1 same here
I had same problem and finally I fixed it with more native solution ``` document.onPaste = e => { const { items } = e.clipboardData; // if you copy image...