summaryrefslogtreecommitdiff
path: root/bin/runTests.sh
blob: 68ebde89a2cdf71347c5e90d6938bedb972ea6b8 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

type -P nodeunit &>/dev/null || { 
  echo "You need to install Nodeunit to run the tests!" >&2
  echo "You can install it with npm" >&2
  echo "Run: npm install nodeunit" >&2
  exit 1 
}
  
nodeunit ../tests