test-all.sh 199 B

123456789
  1. #!/bin/bash
  2. #node06
  3. for node in node08 node; do
  4. command -v ${node} > /dev/null 2>&1 || continue
  5. echo "Testing with $(${node} --version)..."
  6. ${node} node_modules/vows/bin/vows test/*test.js
  7. done