mirror of https://github.com/Chocobozzz/PeerTube
parent
c24aac6bc7
commit
07aea1a264
|
@ -13,7 +13,8 @@ perl -0777 -i -pe 's#proxy:(\n\s+)enabled: false\n\s+url: ""#proxy:$1enabled: t
|
||||||
|
|
||||||
if [ "$1" = "misc" ]; then
|
if [ "$1" = "misc" ]; then
|
||||||
npm run build -- --light
|
npm run build -- --light
|
||||||
mocha --timeout 5000 --exit --require ts-node/register --files --require tsconfig-paths/register --bail server/tests/client.ts \
|
TS_NODE_FILES=true mocha --timeout 5000 --exit --require ts-node/register --require tsconfig-paths/register --bail \
|
||||||
|
server/tests/client.ts \
|
||||||
server/tests/feeds/index.ts \
|
server/tests/feeds/index.ts \
|
||||||
server/tests/misc-endpoints.ts \
|
server/tests/misc-endpoints.ts \
|
||||||
server/tests/helpers/index.ts \
|
server/tests/helpers/index.ts \
|
||||||
|
|
|
@ -5,6 +5,6 @@ set -eu
|
||||||
redundancyFiles=$(find server/tests/api/redundancy -type f | grep -v index.ts | xargs echo)
|
redundancyFiles=$(find server/tests/api/redundancy -type f | grep -v index.ts | xargs echo)
|
||||||
activitypubFiles=$(find server/tests/api/activitypub -type f | grep -v index.ts | xargs echo)
|
activitypubFiles=$(find server/tests/api/activitypub -type f | grep -v index.ts | xargs echo)
|
||||||
|
|
||||||
MOCHA_PARALLEL=true npm run mocha -- --parallel --jobs $1 --timeout 30000 --exit \
|
TS_NODE_FILES=true MOCHA_PARALLEL=true npm run mocha -- --parallel --jobs $1 --timeout 30000 --exit \
|
||||||
--require ts-node/register --files --require tsconfig-paths/register --bail \
|
--require ts-node/register --require tsconfig-paths/register --bail \
|
||||||
$redundancyFiles $activitypubFiles
|
$redundancyFiles $activitypubFiles
|
||||||
|
|
|
@ -28,7 +28,6 @@
|
||||||
"@shared/*": [ "shared/*" ]
|
"@shared/*": [ "shared/*" ]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"include": [ "." ],
|
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"server/tools/",
|
"server/tools/",
|
||||||
"node_modules",
|
"node_modules",
|
||||||
|
|
Loading…
Reference in New Issue