From 5d4da455bd168271f67e7fd59b7a86e7478d67c3 Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Wed, 16 Oct 2019 16:44:36 -0700 Subject: [PATCH] Move Notebook tests back to stable (#7749) * SqlClient fix is in so these should be stable again * removed comments --- extensions/integration-tests/src/notebook.test.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/extensions/integration-tests/src/notebook.test.ts b/extensions/integration-tests/src/notebook.test.ts index 54325ad351..219efe1749 100644 --- a/extensions/integration-tests/src/notebook.test.ts +++ b/extensions/integration-tests/src/notebook.test.ts @@ -29,13 +29,11 @@ if (context.RunTest) { await (new NotebookTester()).cleanup(this.currentTest.title); }); - // This test needs to be re-enabled once the SqlClient driver has been updated - test('Sql NB test @UNSTABLE@', async function () { + test('Sql NB test', async function () { await (new NotebookTester()).sqlNbTest(this.test.title); }); - // This test needs to be re-enabled once the SqlClient driver has been updated - test('Sql NB multiple cells test @UNSTABLE@', async function () { + test('Sql NB multiple cells test', async function () { await (new NotebookTester()).sqlNbMultipleCellsTest(this.test.title); });