Skip to content

Commit

Permalink
fix: remove useless param
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideMininni-Fincons committed Jul 3, 2024
1 parent 54faa8c commit bc1991c
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/elements/select/select.visual.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ describe('sbb-select', () => {
const defaultArgs = {
borderless: false,
negative: false,
floatingLabel: false,
disableOption: false,
withOptionGroup: false,
disableGroup: false,
Expand Down Expand Up @@ -55,7 +54,6 @@ describe('sbb-select', () => {
const template = ({
borderless,
negative,
floatingLabel,
disableOption,
withOptionGroup,
disableGroup,
Expand All @@ -66,11 +64,7 @@ describe('sbb-select', () => {
args.value = [args.value as string];
}
return html`
<sbb-form-field
?borderless=${borderless}
?negative=${negative}
?floating-label=${floatingLabel}
>
<sbb-form-field ?borderless=${borderless} ?negative=${negative}>
<label>Select</label>
<sbb-select
value=${args.value || nothing}
Expand Down

0 comments on commit bc1991c

Please sign in to comment.