Disable 'should not be dirty after saving notebook' test in notebook integration tests. (#7091)

This commit is contained in:
Cory Rivera
2019-09-05 15:34:43 -07:00
committed by GitHub
parent 856833dbc4
commit 3281d28de7

View File

@@ -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));
});