From 8a6c776a5f91ada48af96d1676926f6d9372993e Mon Sep 17 00:00:00 2001 From: Kim Santiago <31145923+kisantia@users.noreply.github.com> Date: Fri, 11 Sep 2020 10:57:48 -0700 Subject: [PATCH] make schema compare test unstable (#12234) * make schema compare test unstable * also make Standalone database context menu test unstable --- extensions/integration-tests/src/test/objectExplorer.test.ts | 2 +- extensions/integration-tests/src/test/schemaCompare.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/integration-tests/src/test/objectExplorer.test.ts b/extensions/integration-tests/src/test/objectExplorer.test.ts index 5d494fd5c7..f2d4513ac6 100644 --- a/extensions/integration-tests/src/test/objectExplorer.test.ts +++ b/extensions/integration-tests/src/test/objectExplorer.test.ts @@ -44,7 +44,7 @@ suite('Object Explorer integration suite', () => { const expectedActions = ['Manage', 'New Query', 'New Notebook', 'Disconnect', 'Delete Connection', 'Refresh', 'Data-tier Application wizard', 'Launch Profiler']; await verifyContextMenu(server, expectedActions); }); - test('Standalone database context menu test', async function () { + test('Standalone database context menu test @UNSTABLE@', async function () { const server = await getStandaloneServer(); let expectedActions: string[] = []; // Generate Scripts and Properties come from the admin-tool-ext-win extension which is for Windows only, so the item won't show up on non-Win32 platforms diff --git a/extensions/integration-tests/src/test/schemaCompare.test.ts b/extensions/integration-tests/src/test/schemaCompare.test.ts index c560c541bd..5cb52d8dc8 100644 --- a/extensions/integration-tests/src/test/schemaCompare.test.ts +++ b/extensions/integration-tests/src/test/schemaCompare.test.ts @@ -227,7 +227,7 @@ suite('Schema compare integration test suite', () => { await utils.tryDeleteDB(server, targetDB, ownerUri); } }); - test('Schema compare dacpac to dacpac comparison with include exclude', async function () { + test('Schema compare dacpac to dacpac comparison with include exclude @UNSTABLE@', async function () { assert(schemaCompareService, 'Schema Compare Service Provider is not available'); const operationId = 'testOperationId_' + new Date().getTime().toString();