Guest User

Untitled

a guest
Apr 25th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. #!bin/bash
  2.  
  3. for i in $( ls test ); do
  4. npx mocha test/$i &> /dev/null
  5. if [[ $? != 0 ]]; then
  6. echo $i
  7. fi
  8. done
Add Comment
Please, Sign In to add comment