run easysync tests during backend tests

This commit is contained in:
webzwo0i 2020-08-04 12:53:11 +02:00
parent 5becf0bd15
commit 3b3ec6d288
2 changed files with 2 additions and 0 deletions

View file

@ -92,6 +92,7 @@
"scripts": { "scripts": {
"test": "nyc mocha --timeout 5000 ../tests/backend/specs/api", "test": "nyc mocha --timeout 5000 ../tests/backend/specs/api",
"test-contentcollector": "nyc mocha --timeout 5000 ../tests/backend/specs", "test-contentcollector": "nyc mocha --timeout 5000 ../tests/backend/specs",
"test-easysync": "nyc mocha --timeout 5000 ../tests/container/specs/easysync",
"test-container": "nyc mocha --timeout 5000 ../tests/container/specs/api" "test-container": "nyc mocha --timeout 5000 ../tests/container/specs/api"
}, },
"version": "1.8.4", "version": "1.8.4",

View file

@ -47,5 +47,6 @@ cd src
failed=0 failed=0
npm run test || failed=1 npm run test || failed=1
npm run test-contentcollector || failed=1 npm run test-contentcollector || failed=1
npm run test-easysync || failed=1
exit $failed exit $failed