From d815ae0e835e628bf6cd4084e11eff6fddf51b19 Mon Sep 17 00:00:00 2001 From: Chris LaFreniere <40371649+chlafreniere@users.noreply.github.com> Date: Tue, 24 Sep 2019 15:04:35 -0700 Subject: [PATCH] Skip failing tests due to sqlclient issues (#7346) --- extensions/integration-tests/src/notebook.test.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/extensions/integration-tests/src/notebook.test.ts b/extensions/integration-tests/src/notebook.test.ts index 6c502b93b3..44a7d79599 100644 --- a/extensions/integration-tests/src/notebook.test.ts +++ b/extensions/integration-tests/src/notebook.test.ts @@ -29,11 +29,13 @@ if (context.RunTest) { await (new NotebookTester()).cleanup(this.currentTest.title); }); - test('Sql NB test', async function () { + // This test needs to be re-enabled once the SqlClient driver has been updated + test.skip('Sql NB test', async function () { await (new NotebookTester()).sqlNbTest(this.test.title); }); - test('Sql NB multiple cells test', async function () { + // This test needs to be re-enabled once the SqlClient driver has been updated + test.skip('Sql NB multiple cells test', async function () { await (new NotebookTester()).sqlNbMultipleCellsTest(this.test.title); });