diff options
author | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2019-03-29 21:57:05 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-29 21:57:05 +0800 |
commit | 125a95ba711f110cec40b79eafc798a31413eef3 (patch) | |
tree | 479bad27e4090fd894d2cfea83d5998078054488 /.circleci/config.yml | |
parent | c3a605f27a846b72227237cefa6e4590c8a3b2c1 (diff) | |
parent | 3113114d51eeb4ecc469abfbf0685183a7fd996e (diff) | |
download | tangerine-wallet-browser-125a95ba711f110cec40b79eafc798a31413eef3.tar tangerine-wallet-browser-125a95ba711f110cec40b79eafc798a31413eef3.tar.gz tangerine-wallet-browser-125a95ba711f110cec40b79eafc798a31413eef3.tar.bz2 tangerine-wallet-browser-125a95ba711f110cec40b79eafc798a31413eef3.tar.lz tangerine-wallet-browser-125a95ba711f110cec40b79eafc798a31413eef3.tar.xz tangerine-wallet-browser-125a95ba711f110cec40b79eafc798a31413eef3.tar.zst tangerine-wallet-browser-125a95ba711f110cec40b79eafc798a31413eef3.zip |
Merge pull request #6364 from MetaMask/prevent-infura-requests-e2e-tests
Prevent infura requests in e2e tests
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 807ed042c..686a996c1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -23,11 +23,9 @@ workflows: - test-e2e-chrome: requires: - prep-deps-npm - - prep-build - test-e2e-firefox: requires: - prep-deps-npm - - prep-build # - test-e2e-beta-drizzle: # requires: # - prep-deps-npm @@ -191,7 +189,8 @@ jobs: at: . - run: name: test:e2e:chrome - command: npm run test:e2e:chrome + command: npm run build:test && npm run test:e2e:chrome + no_output_timeout: 20m - store_artifacts: path: test-artifacts destination: test-artifacts @@ -208,7 +207,8 @@ jobs: at: . - run: name: test:e2e:firefox - command: npm run test:e2e:firefox + command: npm run build:test && npm run test:e2e:chrome + no_output_timeout: 20m - store_artifacts: path: test-artifacts destination: test-artifacts |