Update test case for sortBy, select, orderBy component

This commit is contained in:
2023-11-28 17:49:22 +07:00
parent ddf96492c9
commit 7bb83f74c8
20 changed files with 1412 additions and 413 deletions
@@ -43,7 +43,7 @@ const Select = ({
: { onChange: onChange })}
>
{options.map((option) => (
<option value={option.value} key={option.value}>
<option value={option.value} key={option.value} data-testid='select-option'>
{option.label}
</option>
))}