Re-enable some unstable tests (#13944)

* Re-enable some unstable tests

* Remove some tests that have failed recently
This commit is contained in:
Charles Gagnon
2021-01-13 15:36:58 -08:00
committed by GitHub
parent 1d42431914
commit 8ef9b1cc1f
3 changed files with 6 additions and 7 deletions

View File

@@ -39,7 +39,7 @@ suite('Schema compare integration test suite @DacFx@', () => {
dacfxService = ((await vscode.extensions.getExtension(mssql.extension.name).activate() as mssql.IExtension)).dacFx;
console.log(`Start schema compare tests`);
});
test('Schema compare dacpac to dacpac comparison and scmp @UNSTABLE@', async function () {
test('Schema compare dacpac to dacpac comparison and scmp', async function () {
this.timeout(5 * 60 * 1000);
assert(schemaCompareService, 'Schema Compare Service Provider is not available');
const now = new Date();
@@ -214,7 +214,7 @@ suite('Schema compare integration test suite @DacFx@', () => {
await utils.tryDeleteDB(server, targetDB, ownerUri);
}
});
test('Schema compare dacpac to dacpac comparison with include exclude @UNSTABLE@', async function () {
test('Schema compare dacpac to dacpac comparison with include exclude', async function () {
this.timeout(5 * 60 * 1000);
assert(schemaCompareService, 'Schema Compare Service Provider is not available');
const operationId = 'testOperationId_' + new Date().getTime().toString();