We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ba037b commit 7df0dceCopy full SHA for 7df0dce
packages/uui-select/lib/uui-select.test.ts
@@ -11,6 +11,8 @@ const options: Array<Option> = [
11
{ name: 'Strawberry', value: 'red' },
12
];
13
14
+const selectdVaue: string = 'orange';
15
+
16
describe('UUISelectElement', () => {
17
let element: UUISelectElement;
18
let input: HTMLSelectElement | null | undefined;
@@ -71,7 +73,7 @@ describe('UUISelect in Form', () => {
71
73
<uui-select
72
74
label="foo"
75
name="bar"
- .value="orange"
76
+ .value=${selectdVaue}
77
.options=${options}></uui-select>
78
</form>`,
79
);
0 commit comments