Create another test suite for transcoding jobs

This commit is contained in:
Chocobozzz
2022-02-28 15:56:51 +01:00
parent cba7977552
commit 95faf1eaff
11 changed files with 14 additions and 6 deletions

View File

@@ -94,6 +94,12 @@ elif [ "$1" = "api-4" ]; then
activitypubFiles=$(findTestFiles ./dist/server/tests/api/activitypub)
MOCHA_PARALLEL=true runTest "$1" 2 $moderationFiles $redundancyFiles $activitypubFiles $objectStorageFiles
elif [ "$1" = "api-5" ]; then
npm run build:server
transcodingFiles=$(findTestFiles ./dist/server/tests/api/transcoding)
MOCHA_PARALLEL=true runTest "$1" 2 $transcodingFiles
elif [ "$1" = "external-plugins" ]; then
npm run build:server

View File

@@ -9,6 +9,7 @@ npm run ci -- api-1
npm run ci -- api-2
npm run ci -- api-3
npm run ci -- api-4
npm run ci -- api-5
npm run ci -- external-plugins
npm run ci -- lint