X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=scripts%2Ftest.sh;h=1b6b29b66ec3184a7152a1d0bdb6bd95b370ca5e;hb=711260bbc88233d7343a74576b32e99704dd4b87;hp=701dea8d04baee8bd8cc84d3f82cf486c4311b77;hpb=df98563e2104b82b119c00a3cd83cd0dc1242d25;p=github%2FChocobozzz%2FPeerTube.git diff --git a/scripts/test.sh b/scripts/test.sh index 701dea8d0..1b6b29b66 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -1,8 +1,10 @@ -#!/usr/bin/env sh +#!/bin/sh -cd client || exit -1 -npm test || exit -1 +set -eu -cd .. || exit -1 -npm run tslint -- --type-check --project ./tsconfig.json -c ./tslint.json server.ts server/**/*.ts || exit -1 -mocha server/tests +npm run build:server +npm run setup:cli + +npm run ci -- lint + +mocha --exit --require ts-node/register/type-check --bail server/tests/index.ts