mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-23 22:27:34 -05:00
8 lines
129 B
Bash
Executable file
8 lines
129 B
Bash
Executable file
#!/bin/sh
|
|
|
|
CWD=$(pwd)
|
|
TESTDIR=$(dirname $0)
|
|
cd $TESTDIR
|
|
../node_modules/mocha/bin/mocha -R list --ui exports ./tests.js
|
|
cd $CWD
|
|
|