#!/bin/sh
set -e
for fichier in `find test/ -name "*.js"`; do
  sed -i $fichier -e "s|\.\./|jsonfile|g"
done
mocha
