From 3418e5e2311022b5879b63f6d1e1273479162742 Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Mon, 17 May 2021 17:28:18 +0200 Subject: [PATCH] chore(cli-repl): skip versioned API test until driver support MONGOSH-767 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See the linked tickets, the server increased requirements and the driver hasn’t caught up yet. --- packages/cli-repl/test/e2e.spec.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/cli-repl/test/e2e.spec.ts b/packages/cli-repl/test/e2e.spec.ts index 755bfd0366..99512633e3 100644 --- a/packages/cli-repl/test/e2e.spec.ts +++ b/packages/cli-repl/test/e2e.spec.ts @@ -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' ] });