diff options
author | kumavis <aaron@kumavis.me> | 2018-05-29 00:22:48 +0800 |
---|---|---|
committer | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2018-06-02 03:16:14 +0800 |
commit | 6d4e4b8157419523fd48a276574c32bb60c13fe2 (patch) | |
tree | cea4ce45088634f08505add705a5520ee43dfef0 /.circleci/config.yml | |
parent | 003172231a46ea4587dfdf55ec3ba0803597419b (diff) | |
download | tangerine-wallet-browser-6d4e4b8157419523fd48a276574c32bb60c13fe2.tar tangerine-wallet-browser-6d4e4b8157419523fd48a276574c32bb60c13fe2.tar.gz tangerine-wallet-browser-6d4e4b8157419523fd48a276574c32bb60c13fe2.tar.bz2 tangerine-wallet-browser-6d4e4b8157419523fd48a276574c32bb60c13fe2.tar.lz tangerine-wallet-browser-6d4e4b8157419523fd48a276574c32bb60c13fe2.tar.xz tangerine-wallet-browser-6d4e4b8157419523fd48a276574c32bb60c13fe2.tar.zst tangerine-wallet-browser-6d4e4b8157419523fd48a276574c32bb60c13fe2.zip |
ci - run e2e:beta tests
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 57 |
1 files changed, 53 insertions, 4 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 4d9d01ee6..bff04e5e0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -30,6 +30,15 @@ workflows: - prep-deps-npm - prep-deps-firefox - prep-build + - test-e2e-beta-chrome: + requires: + - prep-deps-npm + - prep-build + - test-e2e-beta-firefox: + requires: + - prep-deps-npm + - prep-deps-firefox + - prep-build - test-unit: requires: - prep-deps-npm @@ -57,6 +66,8 @@ workflows: - test-unit - test-e2e-chrome - test-e2e-firefox + - test-e2e-beta-chrome + - test-e2e-beta-firefox - test-integration-mascara-chrome - test-integration-mascara-firefox - test-integration-flat-chrome @@ -203,15 +214,13 @@ jobs: - restore_cache: key: build-cache-{{ .Revision }} - run: - name: Test + name: test:e2e:chrome command: npm run test:e2e:chrome - store_artifacts: path: test-artifacts destination: test-artifacts test-e2e-firefox: - environment: - browsers: '["Firefox"]' docker: - image: circleci/node:8-browsers steps: @@ -236,6 +245,47 @@ jobs: path: test-artifacts destination: test-artifacts + test-e2e-beta-chrome: + docker: + - image: circleci/node:8-browsers + steps: + - checkout + - restore_cache: + key: dependency-cache-{{ .Revision }} + - restore_cache: + key: build-cache-{{ .Revision }} + - run: + name: test:e2e:chrome:beta + command: npm run test:e2e:chrome:beta + - store_artifacts: + path: test-artifacts + destination: test-artifacts + + test-e2e-beta-firefox: + docker: + - image: circleci/node:8-browsers + steps: + - checkout + - restore_cache: + key: dependency-cache-firefox-{{ .Revision }} + - run: + name: Install firefox + command: > + sudo rm -r /opt/firefox + && sudo mv firefox /opt/firefox58 + && sudo mv /usr/bin/firefox /usr/bin/firefox-old + && sudo ln -s /opt/firefox58/firefox /usr/bin/firefox + - restore_cache: + key: dependency-cache-{{ .Revision }} + - restore_cache: + key: build-cache-{{ .Revision }} + - run: + name: test:e2e:firefox:beta + command: npm run test:e2e:firefox:beta + - store_artifacts: + path: test-artifacts + destination: test-artifacts + job-screens: docker: - image: circleci/node:8-browsers @@ -415,4 +465,3 @@ jobs: - run: name: All Tests Passed command: echo 'weew - everything passed!' - |