Skip to content

Commit 9da936e

Browse files
authored
chore(cli-repl): skip versioned API test until driver support MONGOSH-767 (#871)
See the linked tickets, the server increased requirements and the driver hasn’t caught up yet.
1 parent 713c29f commit 9da936e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -909,8 +909,12 @@ describe('e2e', function() {
909909
shell.assertNoErrors();
910910
});
911911

912-
it('can iterate cursors', async() => {
912+
it('can iterate cursors', async function() {
913913
// Make sure SERVER-55593 doesn't happen to us.
914+
// This is skipped, because in SERVER-56550 the server switched
915+
// to *requiring* an API version for the getMore command used by the
916+
// driver, but the driver does not support that yet (NODE-3249).
917+
return this.skip();
914918
const shell = TestShell.start({ args: [
915919
`${await testServer.connectionString()}/${dbName}`, '--apiVersion', '1'
916920
] });

0 commit comments

Comments
 (0)