Refactor default value for select (#5343)
In this PR, we are refactoring two things: - leverage field.defaultValue for Select and MultiSelect settings form (instead of option.isDefault) - use quoted string (ex: "'USD'") for string default values to embrace backend format --------- Co-authored-by: Thaïs Guigon <guigon.thais@gmail.com>
This commit is contained in:
@ -0,0 +1,11 @@
|
||||
import { applySimpleQuotesToString } from '../applySimpleQuotesToString';
|
||||
|
||||
describe('applySimpleQuotesToString', () => {
|
||||
it('wraps the input string with single quotes', () => {
|
||||
const input = 'Hello, World!';
|
||||
|
||||
const result = applySimpleQuotesToString(input);
|
||||
|
||||
expect(result).toBe(`'${input}'`);
|
||||
});
|
||||
});
|
||||
@ -0,0 +1,11 @@
|
||||
import { capitalize } from '../capitalize';
|
||||
|
||||
describe('capitalize', () => {
|
||||
it('should capitalize a string', () => {
|
||||
expect(capitalize('test')).toBe('Test');
|
||||
});
|
||||
|
||||
it('should return an empty string if input is an empty string', () => {
|
||||
expect(capitalize('')).toBe('');
|
||||
});
|
||||
});
|
||||
@ -0,0 +1,32 @@
|
||||
import { stripSimpleQuotesFromString } from '../stripSimpleQuotesFromString';
|
||||
|
||||
describe('stripSimpleQuotesFromString', () => {
|
||||
it('removes surrounding single quotes from a string', () => {
|
||||
// Given
|
||||
const input = "'Hello, World!'";
|
||||
|
||||
// When
|
||||
const output = stripSimpleQuotesFromString(input);
|
||||
|
||||
// Then
|
||||
expect(output).toBe('Hello, World!');
|
||||
});
|
||||
|
||||
it.each([
|
||||
// Given
|
||||
['no simple quotes'],
|
||||
["'only at start"],
|
||||
["only at end'"],
|
||||
["mid'dle"],
|
||||
[''],
|
||||
])(
|
||||
'returns the input without changes if the string does not start and end with single quotes (%s)',
|
||||
(input) => {
|
||||
// When
|
||||
const output = stripSimpleQuotesFromString(input);
|
||||
|
||||
// Then
|
||||
expect(output).toBe(input);
|
||||
},
|
||||
);
|
||||
});
|
||||
Reference in New Issue
Block a user