@@ -391,34 +391,79 @@ describe.skip("Borders - Divide Style", () => {
391391 // TODO
392392} ) ;
393393
394- describe . skip ( "Borders - Outline Width" , ( ) => {
395- // TODO
396- } ) ;
394+ describe ( "Borders - Outline Width" , ( ) => {
395+ test ( "outline-1" , async ( ) => {
396+ expect ( await renderCurrentTest ( ) ) . toStrictEqual ( {
397+ props : { style : { outlineWidth : 1 , outlineStyle : "solid" } } ,
398+ } ) ;
399+ } ) ;
397400
398- describe . skip ( "Borders - Outline Color" , ( ) => {
399- // TODO
401+ test ( "outline-5" , async ( ) => {
402+ expect ( await renderCurrentTest ( ) ) . toStrictEqual ( {
403+ props : { style : { outlineWidth : 5 , outlineStyle : "solid" } } ,
404+ } ) ;
405+ } ) ;
400406} ) ;
401407
402- describe . skip ( "Borders - Outline Style" , ( ) => {
403- // TODO
404- } ) ;
408+ describe ( "Borders - Outline Color" , ( ) => {
409+ test ( "outline-black" , async ( ) => {
410+ expect ( await renderCurrentTest ( ) ) . toStrictEqual ( {
411+ props : { style : { outlineColor : "#000" } } ,
412+ } ) ;
413+ } ) ;
405414
406- describe . skip ( "Borders - Outline Offset" , ( ) => {
407- // TODO
415+ test ( "outline-white" , async ( ) => {
416+ expect ( await renderCurrentTest ( ) ) . toStrictEqual ( {
417+ props : { style : { outlineColor : "#fff" } } ,
418+ } ) ;
419+ } ) ;
408420} ) ;
409421
410- describe . skip ( "Borders - Ring Width" , ( ) => {
411- // TODO
412- } ) ;
422+ describe ( "Borders - Outline Style" , ( ) => {
423+ test ( "outline-solid" , async ( ) => {
424+ expect ( await renderCurrentTest ( ) ) . toStrictEqual ( {
425+ props : { style : { outlineStyle : "solid" } } ,
426+ } ) ;
427+ } ) ;
413428
414- describe . skip ( "Borders - Ring Color" , ( ) => {
415- // TODO
416- } ) ;
429+ test ( "outline-dashed" , async ( ) => {
430+ expect ( await renderCurrentTest ( ) ) . toStrictEqual ( {
431+ props : { style : { outlineStyle : "dashed" } } ,
432+ } ) ;
433+ } ) ;
417434
418- describe . skip ( "Borders - Ring Offset Width" , ( ) => {
419- // TODO
435+ test ( "outline-dotted" , async ( ) => {
436+ expect ( await renderCurrentTest ( ) ) . toStrictEqual ( {
437+ props : { style : { outlineStyle : "dotted" } } ,
438+ } ) ;
439+ } ) ;
440+
441+ test ( "outline-double" , async ( ) => {
442+ expect ( await renderCurrentTest ( ) ) . toStrictEqual ( {
443+ props : { } ,
444+ warnings : { values : { "outline-style" : "double" } } ,
445+ } ) ;
446+ } ) ;
420447} ) ;
421448
422- describe . skip ( "Borders - Ring Offset Color" , ( ) => {
423- // TODO
449+ describe ( "Borders - Outline Offset" , ( ) => {
450+ test ( "outline-offset-1" , async ( ) => {
451+ expect ( await renderCurrentTest ( ) ) . toStrictEqual ( {
452+ props : {
453+ style : {
454+ outlineOffset : 1 ,
455+ } ,
456+ } ,
457+ } ) ;
458+ } ) ;
459+
460+ test ( "-outline-offset-1" , async ( ) => {
461+ expect ( await renderCurrentTest ( ) ) . toStrictEqual ( {
462+ props : {
463+ style : {
464+ outlineOffset : - 1 ,
465+ } ,
466+ } ,
467+ } ) ;
468+ } ) ;
424469} ) ;
0 commit comments