@@ -326,6 +326,7 @@ test('Selected range if endDate = startDate, currentSelection: startDate', async
326326} ) . before ( async ( ) => {
327327 await appendElementTo ( '#container' , 'div' , 'dateRangeBox' ) ;
328328 await setAttribute ( '#container' , 'style' , 'width: 800px; height: 500px; padding-top: 10px;' ) ;
329+ await insertStylesheetRulesToPage ( '* { caret-color: transparent !important; }' ) ;
329330
330331 return createWidget ( 'dxDateRangeBox' , {
331332 value : [ new Date ( 2021 , 9 , 18 ) , new Date ( 2021 , 9 , 18 ) ] ,
@@ -450,6 +451,7 @@ test('Start date cell in selected range', async (t) => {
450451} ) . before ( async ( ) => {
451452 await appendElementTo ( '#container' , 'div' , 'dateRangeBox' ) ;
452453 await setAttribute ( '#container' , 'style' , 'width: 800px; height: 500px; padding-top: 10px;' ) ;
454+ await insertStylesheetRulesToPage ( '* { caret-color: transparent !important; }' ) ;
453455
454456 return createWidget ( 'dxDateRangeBox' , {
455457 value : [ new Date ( 2021 , 9 , 17 ) , new Date ( 2021 , 10 , 6 ) ] ,
@@ -563,6 +565,7 @@ test('End date cell in selected range', async (t) => {
563565} ) . before ( async ( ) => {
564566 await appendElementTo ( '#container' , 'div' , 'dateRangeBox' ) ;
565567 await setAttribute ( '#container' , 'style' , 'width: 800px; height: 500px; padding-top: 10px;' ) ;
568+ await insertStylesheetRulesToPage ( '* { caret-color: transparent !important; }' ) ;
566569
567570 return createWidget ( 'dxDateRangeBox' , {
568571 value : [ new Date ( 2021 , 9 , 17 ) , new Date ( 2021 , 9 , 23 ) ] ,
0 commit comments