test: Deactivate mocha bail option

We don't want mocha to quit on the first failing test. It should continue
and see what other tests are failing.
This commit is contained in:
Tobias Bieniek
2013-03-18 20:50:04 +01:00
parent 4cec0546c8
commit 1d5389a45d

View File

@@ -30,6 +30,7 @@
<script>
mocha.setup({
ui: 'bdd',
bail: false,
ignoreLeaks: true
});
</script>