Changed default test for option list (#143413)

This commit is contained in:
Arpit Bhardwaj 2022-10-18 21:32:30 +05:30 committed by GitHub
parent 608a05d2d9
commit 34ad684839
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ export const OptionsListStrings = {
}),
getPlaceholder: () =>
i18n.translate('controls.optionsList.control.placeholder', {
defaultMessage: 'Select...',
defaultMessage: 'Any',
}),
},
editor: {

View file

@ -145,7 +145,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await dashboardControls.controlEditorSave();
const selectionString = await dashboardControls.optionsListGetSelectionsString(secondId);
expect(selectionString).to.be('Select...');
expect(selectionString).to.be('Any');
});
it('editing other control settings keeps selections', async () => {