We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6b8c93 commit 78d1787Copy full SHA for 78d1787
bin/test-node.sh
@@ -1,6 +1,6 @@
1
#!/bin/bash -e
2
3
-: ${TIMEOUT:=50000}
+: ${TIMEOUT:=5000}
4
: ${REPORTER:="spec"}
5
: ${BAIL:=1}
6
: ${TYPE:="integration"}
tests/integration/index.html
@@ -14,7 +14,7 @@
14
<script src="../../node_modules/chai-as-promised/lib/chai-as-promised.js"></script>
15
<script>
16
mocha.setup({
17
- timeout:1200000,
+ timeout: 20_000,
18
ui: 'bdd'
19
});
20
var should = chai.should();
tests/integration/test.compaction.js
@@ -5,6 +5,7 @@ var autoCompactionAdapters = ['local'];
adapters.forEach(function (adapter) {
7
describe('suite2 test.compaction.js-' + adapter, function () {
8
+ this.timeout(120000); // 2 mins - these tests can take a while!
9
10
var dbs = {};
11
0 commit comments