11var assert = require ( 'assert' ) ;
22
3- describe . skip ( 'options/unitless-zero' , function ( ) {
3+ describe ( 'options/unitless-zero' , function ( ) {
44 it ( 'Should remove units in zero-valued dimensions' , function ( ) {
55 this . comb . configure ( { 'unitless-zero' : true } ) ;
66 assert . equal (
@@ -35,7 +35,7 @@ describe.skip('options/unitless-zero', function() {
3535 ) ;
3636 } ) ;
3737
38- it ( 'Should detect unitless zero option' , function ( ) {
38+ it . skip ( 'Should detect unitless zero option' , function ( ) {
3939 this . shouldDetect (
4040 [ 'unitless-zero' ] ,
4141 'a { width: 0 }' ,
@@ -45,7 +45,7 @@ describe.skip('options/unitless-zero', function() {
4545 ) ;
4646 } ) ;
4747
48- it ( 'Should detect zero with unit' , function ( ) {
48+ it . skip ( 'Should detect zero with unit' , function ( ) {
4949 this . shouldDetect (
5050 [ 'unitless-zero' ] ,
5151 'a { width: 0px }' ,
@@ -55,7 +55,7 @@ describe.skip('options/unitless-zero', function() {
5555 ) ;
5656 } ) ;
5757
58- it ( 'Should detect unitless zero option with multiple values' , function ( ) {
58+ it . skip ( 'Should detect unitless zero option with multiple values' , function ( ) {
5959 this . shouldDetect (
6060 [ 'unitless-zero' ] ,
6161 'a { padding: 0px 0 0 }' ,
@@ -65,7 +65,7 @@ describe.skip('options/unitless-zero', function() {
6565 ) ;
6666 } ) ;
6767
68- it ( 'Should detect zero with unit and multiple values' , function ( ) {
68+ it . skip ( 'Should detect zero with unit and multiple values' , function ( ) {
6969 this . shouldDetect (
7070 [ 'unitless-zero' ] ,
7171 'a { padding: 0px 0 0em }' ,
@@ -75,23 +75,23 @@ describe.skip('options/unitless-zero', function() {
7575 ) ;
7676 } ) ;
7777
78- it ( 'Shouldn’t detect unitless zero option if there is no unit' , function ( ) {
78+ it . skip ( 'Shouldn’t detect unitless zero option if there is no unit' , function ( ) {
7979 this . shouldDetect (
8080 [ 'unitless-zero' ] ,
8181 'a { color: red }' ,
8282 { }
8383 ) ;
8484 } ) ;
8585
86- it ( 'Shouldn’t detect unitless zero option if there is `deg` unit' , function ( ) {
86+ it . skip ( 'Shouldn’t detect unitless zero option if there is `deg` unit' , function ( ) {
8787 this . shouldDetect (
8888 [ 'unitless-zero' ] ,
8989 'a { transform: rotate(0deg) }' ,
9090 { }
9191 ) ;
9292 } ) ;
9393
94- it ( 'Should detect unitless zero option with percents' , function ( ) {
94+ it . skip ( 'Should detect unitless zero option with percents' , function ( ) {
9595 this . shouldDetect (
9696 [ 'unitless-zero' ] ,
9797 'a { padding: 0% 0 0 }' ,
0 commit comments