-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmongo-express-4.js
25 lines (22 loc) · 949 Bytes
/
mongo-express-4.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
Issue submitted: https://github.com/mongo-express/mongo-express/issues/500
It gives a different error: ""Admin database is not accessible
TypeError: Cannot read property 'listDatabases' of undefined"".
Callback processOpenDatabase() can take long and a request arrive before it is called.
In this case, router.js function (line 74) is called and function updateDatabases()
is called with mongo.adminDb undefined.
To run it:
>> node tests/experiments/exploratory/failing-tests/<script-name>.js
*/
const benchmarkDir = require('../../benchmark_config')();
const runOneMochaTest = require('./runonemochatest');
runOneMochaTest({
benchmarkFolder: `${benchmarkDir}/exploratory/mongo-express`,
runs: 100,
strategy: 'random', // 1-postpone-history (for diagnosis mode)
checkInterleaving: true,
file: `test/lib/routers/indexSpec.js`,
title: 'Router index GET / should return html',
parameters: '',
settings: ''
});