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

10 lines
151 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-09-27 01:16:46 -05:00
cd $CWD