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 if [ "${CIRCLE_BRANCH}" == "remix_live" ]; then
./ci/deploy_from_travis_remix-live.sh; ./ci/deploy_from_travis_remix-live.sh;
fi fi
- store_artifact:
path: ./test-browser/screenshots
workflows: workflows:
version: 2 version: 2

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

Loading…
Cancel
Save