Commits
lotte authored a3181a06899
21 21 | |
22 22 | export const DATE_TEST_MODEL_CONFIG = { |
23 23 | disabled: false, |
24 24 | errorMessages: { required: 'You must enter at least the year.' }, |
25 25 | id: 'date', |
26 26 | label: 'Date', |
27 27 | name: 'date', |
28 28 | placeholder: 'Date', |
29 29 | readOnly: false, |
30 30 | required: true, |
31 + | repeatable: false, |
31 32 | toggleIcon: 'fas fa-calendar' |
32 33 | }; |
33 34 | |
34 35 | describe('DsDatePickerComponent test suite', () => { |
35 36 | |
36 37 | let testComp: TestComponent; |
37 38 | let dateComp: DsDatePickerComponent; |
38 39 | let testFixture: ComponentFixture<TestComponent>; |
39 40 | let dateFixture: ComponentFixture<DsDatePickerComponent>; |
40 41 | let html; |