mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
9 lines
129 B
Bash
9 lines
129 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
CWD=$(pwd)
|
||
|
TESTDIR=$(dirname $0)
|
||
|
cd $TESTDIR
|
||
|
../node_modules/mocha/bin/mocha -R list --ui exports ./tests.js
|
||
|
cd $CWD
|
||
|
|