mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-23 22:27:34 -05:00
203f0300e3
Conflicts: lib/storage.js test/start.sh
10 lines
189 B
Bash
Executable file
10 lines
189 B
Bash
Executable file
#!/bin/sh
|
|
|
|
CWD=$(pwd)
|
|
PATH='../node_modules/.bin':$PATH
|
|
TESTDIR=$(dirname $0)
|
|
cd $TESTDIR
|
|
mocha -R list --ui exports ./tests.js ./no_proxy.js ./st_merge.js
|
|
TESTRES=$?
|
|
cd $CWD
|
|
exit $TESTRES
|