mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Adding execution plan component to model view. (#23620)
This commit is contained in:
@@ -317,7 +317,8 @@ export function createViewContext(): ViewTestContext {
|
||||
separator: undefined!,
|
||||
propertiesContainer: undefined!,
|
||||
infoBox: undefined!,
|
||||
slider: undefined!
|
||||
slider: undefined!,
|
||||
executionPlan: undefined!,
|
||||
}
|
||||
};
|
||||
return {
|
||||
|
||||
@@ -480,6 +480,9 @@ export class MockComponentBuilder implements azdata.ComponentBuilder<any, any> {
|
||||
}
|
||||
|
||||
export class MockModelBuilder implements azdata.ModelBuilder {
|
||||
executionPlan(): azdata.ComponentBuilder<azdata.ExecutionPlanComponent, azdata.ExecutionPlanComponentProperties> {
|
||||
throw new Error('Method not implemented.');
|
||||
}
|
||||
infoBox(): azdata.ComponentBuilder<azdata.InfoBoxComponent, azdata.InfoBoxComponentProperties> {
|
||||
throw new Error('Method not implemented.');
|
||||
}
|
||||
|
||||
@@ -264,7 +264,8 @@ export function createViewContext(): ViewTestContext {
|
||||
separator: undefined!,
|
||||
propertiesContainer: undefined!,
|
||||
infoBox: undefined!,
|
||||
slider: undefined!
|
||||
slider: undefined!,
|
||||
executionPlan: undefined!,
|
||||
}
|
||||
};
|
||||
let tab: azdata.window.DialogTab = {
|
||||
|
||||
@@ -303,7 +303,8 @@ describe('Manage Package Dialog', () => {
|
||||
separator: undefined!,
|
||||
propertiesContainer: undefined!,
|
||||
infoBox: undefined!,
|
||||
slider: undefined!
|
||||
slider: undefined!,
|
||||
executionPlan: undefined!,
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@@ -359,7 +359,8 @@ export function createViewContext(): ViewTestContext {
|
||||
separator: undefined!,
|
||||
propertiesContainer: undefined!,
|
||||
infoBox: undefined!,
|
||||
slider: undefined!
|
||||
slider: undefined!,
|
||||
executionPlan: undefined!,
|
||||
}
|
||||
};
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user