Skip to content

Commit

Permalink
Fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
LotteHofstede authored and tdonohue committed Nov 10, 2023
1 parent 30ce844 commit 8458d58
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ describe('DsDynamicFormControlContainerComponent test suite', () => {
metadataFields: [],
hasSelectableMetadata: false
}),
new DynamicDsDatePickerModel({ id: 'datepicker' }),
new DynamicDsDatePickerModel({ id: 'datepicker', repeatable: false }),
new DynamicLookupModel({
id: 'lookup',
metadataFields: [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export const DATE_TEST_MODEL_CONFIG = {
placeholder: 'Date',
readOnly: false,
required: true,
repeatable: false,
toggleIcon: 'fas fa-calendar'
};

Expand Down
2 changes: 1 addition & 1 deletion src/app/shared/form/builder/form-builder.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ describe('FormBuilderService test suite', () => {
hasSelectableMetadata: true
}),

new DynamicDsDatePickerModel({ id: 'testDate' }),
new DynamicDsDatePickerModel({ id: 'testDate', repeatable: false}),

new DynamicLookupModel({
id: 'testLookup',
Expand Down

0 comments on commit 8458d58

Please sign in to comment.