Skip to content

Commit 79f307c

Browse files
authored
chore(NODE-3664): skip failing tests related to travis filter (#2996)
1 parent dea9c0b commit 79f307c

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

test/functional/operation_generators_example.test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4519,8 +4519,9 @@ describe('Operation (Generators)', function () {
45194519

45204520
/**
45214521
* Correctly call the aggregation framework to return a cursor with batchSize 1 and get the first result using next
4522+
* TODO(NODE-3664): Unskip
45224523
*/
4523-
it('Correctly handle sample aggregation', {
4524+
it.skip('Correctly handle sample aggregation', {
45244525
// Add a tag that our runner can trigger on
45254526
// in this case we are setting that node needs to be higher than 0.10.X to run
45264527
metadata: {

test/functional/replicaset_mock.test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ describe('ReplSet (mocks)', function () {
8585
}
8686
});
8787

88-
it('Should correctly print warning and error when no mongos proxies in seed list', {
88+
// TODO(NODE-3664): Unskip
89+
it.skip('Should correctly print warning and error when no mongos proxies in seed list', {
8990
metadata: {
9091
requires: {
9192
generators: true,

test/tools/reporter/mongodb_reporter.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,8 @@ class MongoDBMochaReporter extends mocha.reporters.Spec {
157157
console.log(chalk.bold('wrote xunit.xml'));
158158
} catch (error) {
159159
console.error(chalk.red(`Failed to output xunit report! ${error}`));
160+
} finally {
161+
if (ctrlC) process.exit(1);
160162
}
161163
}
162164

0 commit comments

Comments
 (0)