summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/rimraf/test/run.sh
blob: 598f0163b23118be8b2f161fe7197f62c4cc84a7 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
set -e
for i in test-*.js; do
  echo -n $i ...
  bash setup.sh
  node $i
  ! [ -d target ]
  echo "pass"
done
rm -rf target