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
|
||||
image: node
|
||||
commands:
|
||||
- yarn test:unit
|
||||
- yarn test:unit --runInBand
|
||||
depends_on:
|
||||
- dependencies
|
||||
|
||||
- name: coverage
|
||||
image: node
|
||||
commands:
|
||||
- yarn test:unit --coverage
|
||||
- yarn test:unit --coverage --runInBand
|
||||
depends_on:
|
||||
- test # Must run after test otherwise SQLite will get mad
|
||||
|
||||
|
|
Loading…
Reference in a new issue