Use test.skip instead of commenting out disabled test (#7338)

* Use test.skip instead of commenting out disabled test

* Also disable OE test
This commit is contained in:
Charles Gagnon
2019-09-24 11:13:25 -07:00
committed by GitHub
parent 89c1c4897a
commit 26072af82f
2 changed files with 3 additions and 5 deletions

View File

@@ -30,7 +30,7 @@ if (context.RunTest) {
test('Azure SQL DB context menu test', async function () {
await (new ObjectExplorerTester()).sqlDbContextMenuTest();
});
test('Standalone database context menu test', async function () {
test.skip('Standalone database context menu test', async function () {
await (new ObjectExplorerTester()).standaloneContextMenuTest();
});
});