From: Eduardo San Martin Morote Date: Fri, 1 May 2020 08:11:39 +0000 (+0200) Subject: ci: move the e2e upwards X-Git-Tag: v4.0.0-alpha.10~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7ea0b63567afa31de35828f93e0585686c8ec0f2;p=thirdparty%2Fvuejs%2Frouter.git 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 --- 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: