aboutsummaryrefslogtreecommitdiff
path: root/node_modules/tmp/test-all.sh
blob: 4734d6056f8cd45ff712e142286da1504baa29bd (plain)
1
2
3
4
5
6
7
8
9
#!/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