Skip to content

Commit 28d2b50

Browse files
authored
chore(cli-repl): unskip apiStrict tests after driver update (#913)
1 parent 808df75 commit 28d2b50

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

packages/cli-repl/test/e2e-fle.spec.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,6 @@ describe('FLE tests', () => {
4040
// eslint-disable-next-line no-loop-func
4141
context(`with AWS KMS (apiStrict=${useApiStrict}, ${withSessionToken ? 'with' : 'without'} sessionToken)`, () => {
4242
if (useApiStrict) {
43-
// Disable this until https://jira.mongodb.org/browse/NODE-3183
44-
// is done because the server has started requiring hello instead of
45-
// isMaster.
46-
return;
4743
skipIfServerVersion(testServer, '< 5.0');
4844
}
4945

packages/cli-repl/test/e2e.spec.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -906,10 +906,6 @@ describe('e2e', function() {
906906
});
907907

908908
it('can specify an API version and strict mode', async function() {
909-
// Disable this until https://jira.mongodb.org/browse/NODE-3183
910-
// is done because the server has started requiring hello instead of
911-
// isMaster.
912-
return this.skip();
913909
const shell = TestShell.start({ args: [
914910
`${await testServer.connectionString()}/${dbName}`, '--apiVersion', '1', '--apiStrict', '--apiDeprecationErrors'
915911
] });
@@ -922,10 +918,6 @@ describe('e2e', function() {
922918

923919
it('can iterate cursors', async function() {
924920
// Make sure SERVER-55593 doesn't happen to us.
925-
// This is skipped, because in SERVER-56550 the server switched
926-
// to *requiring* an API version for the getMore command used by the
927-
// driver, but the driver does not support that yet (NODE-3249).
928-
return this.skip();
929921
const shell = TestShell.start({ args: [
930922
`${await testServer.connectionString()}/${dbName}`, '--apiVersion', '1'
931923
] });

0 commit comments

Comments
 (0)