|
1 | 1 | 'use strict';
|
2 |
| -const path = require('path'); |
3 |
| -const { loadSpecTests } = require('../spec/index'); |
4 |
| -const { runUnifiedSuite } = require('../functional/unified-spec-runner/runner'); |
5 |
| - |
6 |
| -const SKIP = [ |
7 |
| - // Verified they use the same connection but the Node implementation executes |
8 |
| - // a getMore before the killCursors even though the stream is immediately |
9 |
| - // closed. |
10 |
| - 'change streams pin to a connection', |
11 |
| - 'errors during the initial connection hello are ignore', |
12 |
| - |
13 |
| - // NOTE: The following three tests are skipped pending a decision made on DRIVERS-1847, since |
14 |
| - // pinning the connection on any getMore error is very awkward in node and likely results |
15 |
| - // in sub-optimal pinning. |
16 |
| - 'pinned connections are not returned after an network error during getMore', |
17 |
| - 'pinned connections are not returned to the pool after a non-network error on getMore', |
18 |
| - 'stale errors are ignored' |
19 |
| -]; |
20 |
| - |
21 | 2 | require('../functional/retryable_reads.test');
|
22 |
| -require('../functional/retryable_writes.test'); |
23 |
| -require('../functional/uri_options_spec.test'); |
24 |
| -require('../functional/change_stream_spec.test'); |
25 |
| -require('../functional/versioned-api.test'); |
26 |
| -require('../unit/core/mongodb_srv.test'); |
27 |
| -require('../unit/sdam/server_selection/spec.test'); |
| 3 | +// require('../functional/retryable_writes.test'); |
| 4 | +// require('../functional/uri_options_spec.test'); |
| 5 | +// require('../functional/change_stream_spec.test'); |
| 6 | +// require('../functional/versioned-api.test'); |
| 7 | +// require('../unit/core/mongodb_srv.test'); |
| 8 | +// require('../unit/sdam/server_selection/spec.test'); |
28 | 9 |
|
29 | 10 | describe('Load Balancer Unified Tests', function () {
|
30 | 11 | this.timeout(10000);
|
31 |
| - runUnifiedSuite(loadSpecTests(path.join('load-balancers')), SKIP); |
| 12 | + // runUnifiedSuite(loadSpecTests(path.join('load-balancers')), SKIP); |
32 | 13 | });
|
0 commit comments