From fe7ac55e975b42ebd35b355f3ac1967d04779b67 Mon Sep 17 00:00:00 2001 From: Lucy Zhang Date: Wed, 11 May 2022 18:01:14 -0700 Subject: [PATCH] skip test (#19351) --- test/smoke/src/sql/areas/notebook/notebook.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/smoke/src/sql/areas/notebook/notebook.test.ts b/test/smoke/src/sql/areas/notebook/notebook.test.ts index 808cf4ea47..2fd284af6d 100644 --- a/test/smoke/src/sql/areas/notebook/notebook.test.ts +++ b/test/smoke/src/sql/areas/notebook/notebook.test.ts @@ -81,7 +81,8 @@ export function setup(opts: minimist.ParsedArgs) { await app.workbench.sqlNotebook.waitForActiveCellResults(); }); - it('can add a new package from the Manage Packages wizard', async function () { + // Skip this test for now since it is not stable - the way that the wizard is initialized needs to be refactored + it.skip('can add a new package from the Manage Packages wizard', async function () { const app = this.app as Application; await app.workbench.sqlNotebook.newUntitledNotebook(); await app.workbench.sqlNotebook.notebookToolbar.waitForKernel('SQL');