mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-22 17:22:59 -05:00
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:
@@ -62,12 +62,11 @@ if (context.RunTest) {
|
||||
}
|
||||
});
|
||||
|
||||
/*
|
||||
// Disabling due to intermittent failure with error Editor is not connected
|
||||
// Tracking bug https://github.com/microsoft/azuredatastudio/issues/7323
|
||||
|
||||
const bacpac1: string = path.join(__dirname, '../testData/Database1.bacpac');
|
||||
test('Import and export bacpac', async function () {
|
||||
const bacpac1: string = path.join(__dirname, '..', 'testData', 'Database1.bacpac');
|
||||
test.skip('Import and export bacpac', async function () {
|
||||
const server = await getStandaloneServer();
|
||||
await utils.connectToServer(server);
|
||||
|
||||
@@ -101,6 +100,5 @@ if (context.RunTest) {
|
||||
await utils.deleteDB(server, databaseName, ownerUri);
|
||||
}
|
||||
});
|
||||
*/
|
||||
});
|
||||
}
|
||||
|
||||
@@ -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();
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user