@@ -51,15 +51,15 @@ describe("DateTimePickerMonths", function() {
51
51
} ) ;
52
52
} ) ;
53
53
54
- describe ( 'UI' , function ( ) {
55
- it ( ' renders 12 months' , function ( ) {
54
+ describe ( "UI" , function ( ) {
55
+ it ( " renders 12 months" , function ( ) {
56
56
const monthList = TestUtils . scryRenderedDOMComponentsWithClass ( months , "month" ) ;
57
57
expect ( monthList . length ) . toBe ( 12 ) ;
58
58
} ) ;
59
59
60
- it ( ' rendersJanuary through December' , function ( ) {
60
+ it ( " rendersJanuary through December" , function ( ) {
61
61
const monthList = TestUtils . scryRenderedDOMComponentsWithClass ( months , "month" ) ;
62
- expect ( monthList . map ( ( x ) => x . props . children ) ) . toEqual ( [ ' Jan' , ' Feb' , ' Mar' , ' Apr' , ' May' , ' Jun' , ' Jul' , ' Aug' , ' Sep' , ' Oct' , ' Nov' , ' Dec' ] ) ;
62
+ expect ( monthList . map ( ( x ) => x . props . children ) ) . toEqual ( [ " Jan" , " Feb" , " Mar" , " Apr" , " May" , " Jun" , " Jul" , " Aug" , " Sep" , " Oct" , " Nov" , " Dec" ] ) ;
63
63
} ) ;
64
64
65
65
it ( "has an active month that is now's month" , function ( ) {
@@ -75,7 +75,7 @@ describe("DateTimePickerMonths", function() {
75
75
setViewMonth = { setViewMonthMock }
76
76
showYears = { showYearsMock }
77
77
subtractYear = { subtractYearMock }
78
- viewDate = { moment ( ) . add ( 2 , ' year' ) }
78
+ viewDate = { moment ( ) . add ( 2 , " year" ) }
79
79
/>
80
80
) ;
81
81
const active = TestUtils . scryRenderedDOMComponentsWithClass ( months , "active" ) ;
0 commit comments