Removed useless script to run the test suite multiple times in a row

pull/2/head
Louis Chatriot 12 years ago
parent 8b7831acef
commit 555b01c87c
  1. 4
      Makefile
  2. 7
      testMultipleTimes.sh

@ -3,9 +3,5 @@ test:
@ ./node_modules/.bin/mocha --timeout 2000 --reporter spec @ ./node_modules/.bin/mocha --timeout 2000 --reporter spec
@echo "Tests finished" @echo "Tests finished"
test40times:
@echo "Launching the test suite 40 times"
./testMultipleTimes.sh 40
.PHONY: test .PHONY: test

@ -1,7 +0,0 @@
#!/usr/bin/env bash
set -e
for i in $(eval echo {1..$1})
do
make test
done
Loading…
Cancel
Save