-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtestIDs.js
More file actions
24 lines (24 loc) · 718 Bytes
/
testIDs.js
File metadata and controls
24 lines (24 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module.exports = {
menu: {
CONTAINER: 'menu',
CALENDARS: 'calendars_btn',
CALENDAR_LIST: 'calendar_list_btn',
HORIZONTAL_LIST: 'horizontal_list_btn',
AGENDA: 'agenda_btn',
EXPANDABLE_CALENDAR: 'expandable_calendar_btn',
WEEK_CALENDAR: 'week_calendar_btn'
},
calendars: {
CONTAINER: 'calendars',
FIRST: 'first_calendar',
LAST: 'last_calendar'
},
calendarList: {CONTAINER: 'calendarList'},
horizontalList: {CONTAINER: 'horizontalList'},
agenda: {
CONTAINER: 'agenda',
ITEM: 'item'
},
expandableCalendar: {CONTAINER: 'expandableCalendar'},
weekCalendar: {CONTAINER: 'weekCalendar'}
};