From 2dfd90ca0f3a694ae02afdbeb27fa693d4dab61d Mon Sep 17 00:00:00 2001 From: Steve Faulkner Date: Mon, 16 Aug 2021 09:35:21 -0700 Subject: [PATCH] Disable Notebooks Test (#980) --- .github/workflows/ci.yml | 2 +- test/mongo/container.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e62e4423..9f5ea69a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -143,7 +143,7 @@ jobs: - ./test/mongo/container.spec.ts - ./test/mongo/container32.spec.ts - ./test/selfServe/selfServeExample.spec.ts - - ./test/notebooks/upload.spec.ts + # - ./test/notebooks/upload.spec.ts // TEMP disabled since notebooks service is off - ./test/sql/resourceToken.spec.ts - ./test/tables/container.spec.ts steps: diff --git a/test/mongo/container.spec.ts b/test/mongo/container.spec.ts index 53d343882..ca977ea93 100644 --- a/test/mongo/container.spec.ts +++ b/test/mongo/container.spec.ts @@ -16,7 +16,7 @@ test("Mongo CRUD", async () => { await explorer.click('[data-test="New Collection"]'); await explorer.fill('[aria-label="New database id"]', databaseId); await explorer.fill('[aria-label="Collection id"]', containerId); - await explorer.fill('[aria-label="Shard key"]', "/pk"); + await explorer.fill('[aria-label="Shard key"]', "pk"); await explorer.click("#sidePanelOkButton"); await explorer.click(`.nodeItem >> text=${databaseId}`); await explorer.click(`.nodeItem >> text=${containerId}`);