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 bf87924 commit 79814f7Copy full SHA for 79814f7
test/functional/readconcern_tests.js
@@ -5,20 +5,9 @@ var f = require('util').format;
5
const expect = require('chai').expect;
6
7
describe('ReadConcern', function() {
8
- before(function(done) {
+ before(function() {
9
var configuration = this.configuration;
10
- setupDatabase(configuration).then(function() {
11
- configuration.restart({ purge: false, kill: true }, function() {
12
- done();
13
- });
14
15
16
-
17
- after(function(done) {
18
- var configuration = this.configuration;
19
20
21
+ return setupDatabase(configuration);
22
});
23
24
it('Should set local readConcern on db level', {
0 commit comments