Debug circleci pipeline

pull/5370/head
ioedeveloper 5 years ago committed by LianaHus
parent 813d926bdb
commit a27b099b1b
  1. 2
      .circleci/config.yml
  2. 1
      test-browser/commands/verifyContracts.js

@ -43,6 +43,8 @@ jobs:
if [ "${CIRCLE_BRANCH}" == "remix_live" ]; then
./ci/deploy_from_travis_remix-live.sh;
fi
- store_artifact:
path: ./test-browser/screenshots
workflows:
version: 2

@ -16,6 +16,7 @@ function getCompiledContracts (browser, opts, callback) {
browser
.clickLaunchIcon('solidity')
.pause(opts.wait)
.saveScreenshot(`test-browser/screenshots/screenshot_${new Date().valueOf()}.png`)
.scrollInto('*[data-id="compiledContracts"] option:first-child')
.waitForElementPresent('*[data-id="compiledContracts"] option')
.execute(function () {

Loading…
Cancel
Save