mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-16 17:22:29 -05:00
OptionsMapTable logic to replace the deployment hardcoded values final (#19789)
* OptionsMapTable logic to replace the deployment hardcoded values final * Test modifiaction * OptionsMApTable updates with STS and review commetns * comments added and option string moved to constants file * Reverting the options button css related change and will put in other PR * converted optionsMapTable to custom type and references. * Options prop changes and model updates * Reset btn event method name fixed * removed local booleanOptionDict var and using the existing one * updated code with removed local vars * Update to booleanOptionsDictionary name * merged two variable to one * Refactoring code and updating variables * separated lookup and data array and refactor * missing visibility * reset logic revised and no other edgecases found * variable names updated to meaningful * vbump here to test the checks, sending new vbump PR separately
This commit is contained in:
committed by
GitHub
parent
84a15ea91d
commit
89816c9ff3
@@ -46,7 +46,7 @@ describe('Publish Database Options Dialog', () => {
|
||||
// Verify the deployment options should exists
|
||||
should.notEqual(optionsDialog.optionsModel.deploymentOptions, undefined);
|
||||
|
||||
Object.entries(optionsDialog.optionsModel.deploymentOptions).forEach(option => {
|
||||
Object.entries(optionsDialog.optionsModel.deploymentOptions.booleanOptionsDictionary).forEach(option => {
|
||||
// Validate the value and description as expected
|
||||
should.equal(option[1].value, false);
|
||||
should.equal(option[1].description, 'Sample Description text');
|
||||
|
||||
Reference in New Issue
Block a user