pull/2470/head
yann300 3 years ago
parent 47baf742f8
commit 2c41ea0291
  1. 4
      apps/remix-ide-e2e/src/commands/verifyContracts.ts

@ -55,8 +55,8 @@ function verifyContracts (browser: NightwatchBrowser, compiledContractNames: str
callback() callback()
}) })
} else { } else {
for (const name in compiledContractNames) { for (const index in compiledContractNames) {
await browser.waitForElementContainsText('[data-id="compiledContracts"]', name, 60000) await browser.waitForElementContainsText('[data-id="compiledContracts"]', compiledContractNames[index], 60000)
} }
done() done()
callback() callback()

Loading…
Cancel
Save