Make tests run sequentially
This commit is contained in:
parent
4e2afd4db3
commit
6a863e79b7
1 changed files with 2 additions and 2 deletions
|
@ -116,14 +116,14 @@ steps:
|
||||||
- name: test
|
- name: test
|
||||||
image: node
|
image: node
|
||||||
commands:
|
commands:
|
||||||
- yarn test:unit
|
- yarn test:unit --runInBand
|
||||||
depends_on:
|
depends_on:
|
||||||
- dependencies
|
- dependencies
|
||||||
|
|
||||||
- name: coverage
|
- name: coverage
|
||||||
image: node
|
image: node
|
||||||
commands:
|
commands:
|
||||||
- yarn test:unit --coverage
|
- yarn test:unit --coverage --runInBand
|
||||||
depends_on:
|
depends_on:
|
||||||
- test # Must run after test otherwise SQLite will get mad
|
- test # Must run after test otherwise SQLite will get mad
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue