Unstable tests (#7487)

Setup unstable tests
This commit is contained in:
Amir Omidi
2019-10-02 22:01:17 -07:00
committed by GitHub
parent 575d1c8543
commit 6582debd73
10 changed files with 55 additions and 12 deletions

View File

@@ -30,12 +30,12 @@ if (context.RunTest) {
});
// This test needs to be re-enabled once the SqlClient driver has been updated
test.skip('Sql NB test', async function () {
test('Sql NB test @UNSTABLE@', async function () {
await (new NotebookTester()).sqlNbTest(this.test.title);
});
// This test needs to be re-enabled once the SqlClient driver has been updated
test.skip('Sql NB multiple cells test', async function () {
test('Sql NB multiple cells test @UNSTABLE@', async function () {
await (new NotebookTester()).sqlNbMultipleCellsTest(this.test.title);
});
@@ -56,7 +56,7 @@ if (context.RunTest) {
});
// TODO: Need to make this test more reliable.
test.skip('should not be dirty after saving notebook test', async function () {
test('should not be dirty after saving notebook test @UNSTABLE@', async function () {
await (new NotebookTester().shouldNotBeDirtyAfterSavingNotebookTest(this.test.title));
});