mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
9 lines
151 B
Bash
Executable file
9 lines
151 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
|
|
cd $CWD
|
|
|