wallet-core/node_modules/tmp/test-all.sh

10 lines
199 B
Bash
Raw Normal View History

2016-11-03 01:33:53 +01:00
#!/bin/bash
#node06
for node in node08 node; do
command -v ${node} > /dev/null 2>&1 || continue
echo "Testing with $(${node} --version)..."
${node} node_modules/vows/bin/vows test/*test.js
done