Skip to content

Commit

Permalink
chore: add test
Browse files Browse the repository at this point in the history
  • Loading branch information
cipchk committed Oct 18, 2024
1 parent d64ae08 commit b9e7ef7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions packages/form/src/widgets/select/select.widget.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,9 @@ describe('form: widget: select', () => {
default: 1,
ui: {
widget,
allowClear: true
}
allowClear: true,
clearValue: 2
} as SFSelectWidgetSchema
}
}
};
Expand All @@ -151,7 +152,7 @@ describe('form: widget: select', () => {
.time()
.typeEvent('click', '.ant-select-close-icon')
.time()
.checkValue('/a', undefined)
.checkValue('/a', 2)
.asyncEnd();
}));

Expand Down

0 comments on commit b9e7ef7

Please sign in to comment.