0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-06 22:40:26 -05:00
verdaccio/test/start.sh

11 lines
175 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-11-24 12:07:18 -05:00
mocha -R list --ui exports ./tests.js ./no_proxy.js
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