Skip to content

Commit 19054d2

Browse files
fix(calendar-web): ensure showEventDate is included in defaultProps for Calendar tests
1 parent c346e6d commit 19054d2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/pluggableWidgets/calendar-web/src/__tests__/Calendar.spec.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ const defaultProps: CalendarContainerProps = {
2222
minHeight: 400,
2323
maxHeightUnit: "none",
2424
maxHeight: 400,
25-
overflowY: "auto"
25+
overflowY: "auto",
26+
showEventDate: true
2627
};
2728

2829
beforeAll(() => {

0 commit comments

Comments
 (0)