1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/test/start.sh

11 lines
149 B
Bash
Raw Normal View History

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