@@ -914,7 +914,7 @@ describe("Day", () => {
914914 . querySelector ( ".react-datepicker__day" )
915915 ?. classList . contains ( rangeDayClassName ) ,
916916 ) . toBe ( true ) ;
917- } )
917+ } ) ;
918918
919919 it ( "should select range from selectingDate to startDate if selectingDate is before startDate" , ( ) => {
920920 const startDate = newDate ( ) ;
@@ -936,7 +936,7 @@ describe("Day", () => {
936936
937937 it ( "should select as range if selectingDate is equal to startDate" , ( ) => {
938938 const startDate = newDate ( ) ;
939- const selectingDate = startDate
939+ const selectingDate = startDate ;
940940
941941 const containerStartDay = renderDay ( startDate , {
942942 startDate,
@@ -967,7 +967,6 @@ describe("Day", () => {
967967 ?. classList . contains ( rangeDayStartClassName ) ,
968968 ) . toBe ( true ) ;
969969
970-
971970 const containerEndDay = renderDay ( startDate , {
972971 startDate,
973972 selectingDate,
@@ -980,7 +979,7 @@ describe("Day", () => {
980979 . querySelector ( ".react-datepicker__day" )
981980 ?. classList . contains ( rangeDayEndClassName ) ,
982981 ) . toBe ( true ) ;
983- } )
982+ } ) ;
984983
985984 it ( "should set selectingDate as the end of range and startDate as the start of range if selectingDate is after startDate" , ( ) => {
986985 const startDate = newDate ( ) ;
@@ -1010,9 +1009,9 @@ describe("Day", () => {
10101009 . querySelector ( ".react-datepicker__day" )
10111010 ?. classList . contains ( rangeDayEndClassName ) ,
10121011 ) . toBe ( true ) ;
1013- } )
1012+ } ) ;
10141013
1015- it ( ' should set startDate as the end and start range if selectionDate equal startDate' , ( ) => {
1014+ it ( " should set startDate as the end and start range if selectionDate equal startDate" , ( ) => {
10161015 const startDate = newDate ( ) ;
10171016 const selectingDate = startDate ;
10181017
@@ -1041,7 +1040,7 @@ describe("Day", () => {
10411040 ?. classList . contains ( rangeDayEndClassName ) ,
10421041 ) . toBe ( true ) ;
10431042 } ) ;
1044- } )
1043+ } ) ;
10451044 } ) ;
10461045
10471046 describe ( "today" , ( ) => {
0 commit comments