UNPKG

344 BPlain TextView Raw
1#!/bin/bash
2
3# This is a script to run our mocha tests one by one, rather than automatically
4# via mocha, so we can figure out which one is hanging if we have unreleased
5# timeouts, etc. at the end of a test script. Not needed often. -Tom
6
7files=test/*.js
8echo $files
9for file in $files; do
10 echo $file
11 ./node_modules/.bin/mocha $file
12done
13