Disable unstable tests (#7571)

This commit is contained in:
Amir Omidi
2019-10-08 13:01:49 -07:00
committed by GitHub
parent 32df727ff9
commit bcaa09e910
2 changed files with 5 additions and 5 deletions

View File

@@ -47,7 +47,7 @@ if (context.RunTest) {
}
});
test('Create CMS Server', async function () {
test('Create CMS Server @UNSTABLE@', async function () {
// Should fail
await utils.assertThrowsAsync(
async () => await cmsService.createCmsServer(undefined, 'test_description', undefined, ownerUri),
@@ -68,7 +68,7 @@ if (context.RunTest) {
await cmsService.createCmsServer(TEST_CMS_NAME, 'test_description', connection, ownerUri);
});
test('Add and delete registered group to/from CMS server', async function () {
test('Add and delete registered group to/from CMS server @UNSTABLE@', async function () {
await utils.assertThrowsAsync(
async () => await cmsService.addServerGroup(ownerUri, '', undefined, 'test_description'),
'Cannot add a server group without a name');
@@ -97,7 +97,7 @@ if (context.RunTest) {
`The server group ${TEST_CMS_GROUP} was not removed successfully. Groups : [${cmsResources.registeredServerGroups.map(g => g.name).join(', ')}]`);
});
test('Add and delete registered server to/from CMS server', async function () {
test('Add and delete registered server to/from CMS server @UNSTABLE@', async function () {
await utils.assertThrowsAsync(
async () => cmsService.addRegisteredServer(ownerUri, '', undefined, 'test_description', undefined),
@@ -130,7 +130,7 @@ if (context.RunTest) {
assert(deleteResult === true, `Registered server ${TEST_CMS_SERVER} was not removed correctly`);
});
test('Add and delete registered server to/from server group', async function () {
test('Add and delete registered server to/from server group @UNSTABLE@', async function () {
// Should create a server group
let result = await cmsService.addServerGroup(ownerUri, '', TEST_CMS_GROUP, 'test_description');

View File

@@ -26,7 +26,7 @@ if (context.RunTest) {
console.log(`Start dacpac tests`);
});
test('Deploy and extract dacpac', async function () {
test('Deploy and extract dacpac @UNSTABLE@', async function () {
const server = await getStandaloneServer();
await utils.connectToServer(server);