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
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
install-and-parallel-test:
jobs:
- install
- - test-unit:
+ - test-e2e:
requires:
- install
- - test-e2e:
+ - test-unit:
requires:
- install
- build-lint: