From 3281d28de7a0e4a9c6e7ef0c40fa62d5192f3102 Mon Sep 17 00:00:00 2001 From: Cory Rivera Date: Thu, 5 Sep 2019 15:34:43 -0700 Subject: [PATCH] Disable 'should not be dirty after saving notebook' test in notebook integration tests. (#7091) --- extensions/integration-tests/src/notebook.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extensions/integration-tests/src/notebook.test.ts b/extensions/integration-tests/src/notebook.test.ts index 2613dc8585..bc7c1982f9 100644 --- a/extensions/integration-tests/src/notebook.test.ts +++ b/extensions/integration-tests/src/notebook.test.ts @@ -53,7 +53,8 @@ if (context.RunTest) { await (new NotebookTester()).sqlLanguageTest(this.test.title); }); - test('should not be dirty after saving notebook test', async function () { + // TODO: Need to make this test more reliable. + test.skip('should not be dirty after saving notebook test', async function () { await (new NotebookTester().shouldNotBeDirtyAfterSavingNotebookTest(this.test.title)); });