Skip to content
Merged
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
6 changes: 5 additions & 1 deletion packages/cli-repl/test/e2e.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -909,8 +909,12 @@ describe('e2e', function() {
shell.assertNoErrors();
});

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