mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
10 lines
137 B
Bash
Executable File
10 lines
137 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
|
|
cd $CWD
|
|
|