From 7ea0b63567afa31de35828f93e0585686c8ec0f2 Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Fri, 1 May 2020 10:11:39 +0200 Subject: [PATCH] ci: move the e2e upwards Another find: https://stackoverflow.com/questions/50642308/webdriverexception-unknown-error-devtoolsactiveport-file-doesnt-exist-while-t This seems to work now and is faster than non parallel ci. The next step would be to split up e2e tests with circleci --- circle.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/circle.yml b/circle.yml index ed726d78..6c31f491 100644 --- a/circle.yml +++ b/circle.yml @@ -36,21 +36,21 @@ jobs: paths: - vue-router/e2e/__build__ - test-unit: + test-e2e: <<: *defaults steps: - attach_workspace: at: ~/project - - run: yarn test:unit --maxWorkers=2 - - store_artifacts: - path: coverage + - run: yarn test:e2e:ci - test-e2e: + test-unit: <<: *defaults steps: - attach_workspace: at: ~/project - - run: yarn test:e2e:ci + - run: yarn test:unit --maxWorkers=2 + - store_artifacts: + path: coverage build-lint: <<: *defaults @@ -82,10 +82,10 @@ workflows: install-and-parallel-test: jobs: - install - - test-unit: + - test-e2e: requires: - install - - test-e2e: + - test-unit: requires: - install - build-lint: -- 2.47.3