Skip to content

Commit e4956f4

Browse files
read/write concern tests done
1 parent 6dea392 commit e4956f4

File tree

2 files changed

+14
-24
lines changed

2 files changed

+14
-24
lines changed

test/integration/read-write-concern/read_write_concern.spec.test.js

Lines changed: 0 additions & 24 deletions
This file was deleted.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import path = require('path');
2+
import { loadSpecTests } from '../../spec';
3+
import { runUnifiedSuite } from '../../tools/unified-spec-runner/runner';
4+
5+
describe('Read/Write Concern Unified Tests', function () {
6+
runUnifiedSuite(
7+
loadSpecTests(path.join('read-write-concern', 'operation')),
8+
({ description }) => {
9+
return description.toLowerCase().includes('mapreduce')
10+
? 'The node driver does not implement mapReduce.'
11+
: false;
12+
}
13+
);
14+
});

0 commit comments

Comments
 (0)