aboutsummaryrefslogtreecommitdiffstats
path: root/.circleci
diff options
context:
space:
mode:
authorBruno Barbieri <bruno.barbieri@consensys.net>2018-10-10 13:12:43 +0800
committerkumavis <kumavis@users.noreply.github.com>2018-10-10 13:12:43 +0800
commitccab4ee1a408d93f38765e9b6ef3dc33a18befa9 (patch)
tree272774935fd6ed3902b7ad49450bedfebf120fa3 /.circleci
parent1eec21b94525cc8ba07b733c0c7989fa70bff37f (diff)
downloadtangerine-wallet-browser-ccab4ee1a408d93f38765e9b6ef3dc33a18befa9.tar
tangerine-wallet-browser-ccab4ee1a408d93f38765e9b6ef3dc33a18befa9.tar.gz
tangerine-wallet-browser-ccab4ee1a408d93f38765e9b6ef3dc33a18befa9.tar.bz2
tangerine-wallet-browser-ccab4ee1a408d93f38765e9b6ef3dc33a18befa9.tar.lz
tangerine-wallet-browser-ccab4ee1a408d93f38765e9b6ef3dc33a18befa9.tar.xz
tangerine-wallet-browser-ccab4ee1a408d93f38765e9b6ef3dc33a18befa9.tar.zst
tangerine-wallet-browser-ccab4ee1a408d93f38765e9b6ef3dc33a18befa9.zip
tests - integration - Add Drizzle tests (#5467)
* added drizzle app for testing * working * clean up * clean up script * make build step required * add drizzle-tests to .eslintignore * clean up drizzle run script * lint * use truffle unbox * undo eslintignore changes * revert change * dont use global * dont need this steps * use the new account flow * restore package-lock.json
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 7eedc3f87..00ba9ffa2 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -36,6 +36,10 @@ workflows:
requires:
- prep-deps-npm
- prep-build
+ - test-e2e-beta-drizzle:
+ requires:
+ - prep-deps-npm
+ - prep-build
- test-unit:
requires:
- prep-deps-npm
@@ -68,6 +72,7 @@ workflows:
- test-e2e-firefox
- test-e2e-beta-chrome
- test-e2e-beta-firefox
+ - test-e2e-beta-drizzle
- test-integration-mascara-chrome
- test-integration-mascara-firefox
- test-integration-flat-chrome
@@ -222,6 +227,19 @@ jobs:
path: test-artifacts
destination: test-artifacts
+ test-e2e-beta-drizzle:
+ docker:
+ - image: circleci/node:8.11.3-browsers
+ steps:
+ - checkout
+ - attach_workspace:
+ at: .
+ - run:
+ name: test:e2e:drizzle:beta
+ command: npm run test:e2e:drizzle:beta
+ - store_artifacts:
+ path: test-artifacts
+ destination: test-artifacts
test-e2e-beta-chrome:
docker:
- image: circleci/node:8.11.3-browsers