Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ describe('Client Side Encryption (Legacy)', function () {
const testSuites = gatherTestSuites(
path.join(__dirname, '../../spec/client-side-encryption/tests/legacy'),
testContext
);
).filter(({ name }) => !name.includes('fle2-Range'));
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not our usual method for skipping tests because they do not appear in test output - but because I am about to implement the logic for these tests, it was easier than listing out all tests to skip into an array.


installNodeDNSWorkaroundHooks();
after(() => testContext.teardown());
Expand All @@ -96,6 +96,7 @@ describe('Client Side Encryption (Legacy)', function () {

return !isSkippedTest;
}

return true;
});
});
Expand Down
Loading