We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 713c29f commit 9da936eCopy full SHA for 9da936e
packages/cli-repl/test/e2e.spec.ts
@@ -909,8 +909,12 @@ describe('e2e', function() {
909
shell.assertNoErrors();
910
});
911
912
- it('can iterate cursors', async() => {
+ it('can iterate cursors', async function() {
913
// 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();
918
const shell = TestShell.start({ args: [
919
`${await testServer.connectionString()}/${dbName}`, '--apiVersion', '1'
920
] });
0 commit comments