Skip to content

Commit ce3442d

Browse files
committed
test(NODE-3713): adding todo comments for skipped tests
1 parent a7a8bbc commit ce3442d

File tree

6 files changed

+6
-3
lines changed

6 files changed

+6
-3
lines changed

test/functional/connections_stepdown.test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ function expectPoolWasNotCleared(initialCount) {
2626
return count => expect(count).to.equal(initialCount);
2727
}
2828

29+
// TODO: NODE-3819: Unskip flaky MacOS tests.
2930
describe.skip('Connections survive primary step down', function () {
3031
let client;
3132
let checkClient;

test/functional/cursorstream.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ describe('Cursor Streams', function () {
207207
}
208208
});
209209

210-
// Fails on MacOS on Evergreen (NODE-3713)
210+
// TODO: NODE-3819: Unskip flaky MacOS tests.
211211
it.skip('should stream documents across getMore command and count correctly', {
212212
metadata: {
213213
requires: { topology: ['single', 'replicaset', 'sharded', 'ssl', 'heap', 'wiredtiger'] }

test/functional/examples/change_streams.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
const setupDatabase = require('../shared').setupDatabase;
55
const expect = require('chai').expect;
66

7-
// Fails on MacOS on Evergreen (NODE-3713)
7+
// TODO: NODE-3819: Unskip flaky MacOS tests.
88
describe.skip('examples(change-stream):', function () {
99
let client;
1010
let db;

test/functional/find.test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1655,6 +1655,7 @@ describe('Find', function () {
16551655
}
16561656
});
16571657

1658+
// TODO: NODE-3819: Unskip flaky MacOS tests.
16581659
it.skip('shouldCorrectlyIterateOverCollection', {
16591660
metadata: {
16601661
requires: { topology: ['single', 'replicaset', 'sharded', 'ssl', 'heap', 'wiredtiger'] }

test/functional/unit-sdam/monitoring.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ describe('monitoring', function () {
2222
return mock.createServer().then(server => (mockServer = server));
2323
});
2424

25-
// Fails on MacOS on Evergreen (NODE-3713)
25+
// TODO: NODE-3819: Unskip flaky MacOS tests.
2626
it.skip('should record roundTripTime', function (done) {
2727
mockServer.setMessageHandler(request => {
2828
const doc = request.document;

test/functional/write_concern.test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ describe('Write Concern', function () {
9797

9898
after(() => mock.cleanup());
9999

100+
// TODO: NODE-3816
100101
it.skip('should pipe writeConcern from client down to API call', function () {
101102
server.setMessageHandler(request => {
102103
if (request.document && request.document.ismaster) {

0 commit comments

Comments
 (0)