0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00
verdaccio/test/start.sh
2013-12-11 09:04:35 -06:00

10 lines
175 B
Bash
Executable file

#!/bin/sh
CWD=$(pwd)
PATH='../node_modules/.bin':$PATH
TESTDIR=$(dirname $0)
cd $TESTDIR
mocha -R list --ui exports ./tests.js ./no_proxy.js
TESTRES=$?
cd $CWD
exit $TESTRES