0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-20 22:52:46 -05:00
verdaccio/test/start.sh

11 lines
149 B
Bash
Raw Normal View History

2013-09-27 10:16:46 +04:00
#!/bin/sh
CWD=$(pwd)
PATH='../node_modules/.bin':$PATH
2013-09-27 10:16:46 +04:00
TESTDIR=$(dirname $0)
cd $TESTDIR
2013-12-19 19:11:54 +04:00
mocha ./functional ./unit
2013-12-10 14:03:48 -06:00
TESTRES=$?
2013-09-27 10:16:46 +04:00
cd $CWD
2013-12-10 14:03:48 -06:00
exit $TESTRES