1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-08 23:25:51 +01:00
verdaccio/test/start.sh
2013-12-19 19:11:54 +04:00

11 lines
149 B
Bash
Executable File

#!/bin/sh
CWD=$(pwd)
PATH='../node_modules/.bin':$PATH
TESTDIR=$(dirname $0)
cd $TESTDIR
mocha ./functional ./unit
TESTRES=$?
cd $CWD
exit $TESTRES