aboutsummaryrefslogblamecommitdiffhomepage
path: root/scripts/travis.sh
blob: 79be234935849ce6c95618806c2b04ecbba19dca (plain) (tree)
1
2
3
4
5
6
7
8
9


         





                                    
                          
                 
                                                                                                                               
                           
                        
                                                                                                      
                           
                        
                                                                                                      

                                
                                                                                                           

                                
                                                                                                           
                            


                  
 
                                                                                                            
  
#!/bin/sh

set -eu

if [ $# -eq 0 ]; then
    echo "Need test suite argument."
    exit -1
fi

if [ "$1" = "misc" ]; then
    npm run build
    mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/client.ts server/tests/activitypub.ts
elif [ "$1" = "api" ]; then
    npm run build:server
    mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/api/index.ts
elif [ "$1" = "cli" ]; then
    npm run build:server
    mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/cli/index.ts
elif [ "$1" = "api-fast" ]; then
    npm run build:server
    mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/api/index-fast.ts
elif [ "$1" = "api-slow" ]; then
    npm run build:server
    mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/api/index-slow.ts
elif [ "$1" = "lint" ]; then
    ( cd client
      npm run lint
    )

    npm run tslint -- --project ./tsconfig.json -c ./tslint.json server.ts "server/**/*.ts" "shared/**/*.ts"
fi