0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-23 22:27:34 -05:00
verdaccio/test/start.sh

11 lines
168 B
Bash
Raw Normal View History

2013-09-27 01:16:46 -05:00
#!/bin/sh
CWD=$(pwd)
PATH='../node_modules/.bin':$PATH
2013-09-27 01:16:46 -05:00
TESTDIR=$(dirname $0)
cd $TESTDIR
2013-12-15 15:54:50 -05:00
mocha -R list --ui exports ./tests.js ./unit
2013-12-10 15:03:48 -05:00
TESTRES=$?
2013-09-27 01:16:46 -05:00
cd $CWD
2013-12-10 15:03:48 -05:00
exit $TESTRES