Skip to content

Commit 8b2d787

Browse files
authored
chore: Update Calendar test utils API descriptions (#2004)
1 parent aec96a9 commit 8b2d787

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test-utils/dom/calendar/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ import ButtonWrapper from '../button';
77
export default class CalendarWrapper extends ComponentWrapper {
88
static rootSelector: string = styles.root;
99
/**
10-
* Returns a day container on the calendar.
10+
* Returns a date container on the calendar.
1111
*
12-
* @param row 1-based row index of the day.
13-
* @param column 1-based column index of the day.
12+
* @param row 1-based row index of the day or month.
13+
* @param column 1-based column index of the day or month.
1414
*/
1515
findDateAt(row: number, column: number): ElementWrapper {
1616
return this.find(`.${styles['calendar-row']}:nth-child(${row}) .${styles['calendar-date']}:nth-child(${column})`)!;

0 commit comments

Comments
 (0)