blob-util/bin/run-test.sh
2014-10-04 22:40:02 -04:00

10 lines
122 B
Bash
Executable File

#!/bin/bash
: ${CLIENT:="node"}
if [ "$CLIENT" == "node" ]; then
npm run test-node
else
npm run test-browser
fi