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

10 lines
137 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
mocha -R list --ui exports ./tests.js
2013-09-27 08:16:46 +02:00
cd $CWD