From e9b678494c2978d816c7fff2d3ac0b6ee8f3991a Mon Sep 17 00:00:00 2001 From: Lucy Zhang Date: Thu, 14 Apr 2022 10:54:15 -0700 Subject: [PATCH] skip manage packages test (#19089) --- 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 85efc1407c..860455e40b 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 () { + // Temporarily skipping this test while investigating failure in builds + 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');