11var assert = require ( 'assert' ) ;
22
3- describe . skip ( 'options/element-case' , function ( ) {
3+ describe ( 'options/element-case' , function ( ) {
44 it ( 'Invalid String should not change case of elements' , function ( ) {
55 this . comb . configure ( { 'element-case' : 'foobar' } ) ;
66 assert . equal (
@@ -41,7 +41,7 @@ describe.skip('options/element-case', function() {
4141 ) ;
4242 } ) ;
4343
44- it ( 'Should detect lowercase elements' , function ( ) {
44+ it . skip ( 'Should detect lowercase elements' , function ( ) {
4545 this . shouldDetect (
4646 [ 'element-case' ] ,
4747 'a { color: red }' ,
@@ -51,7 +51,7 @@ describe.skip('options/element-case', function() {
5151 ) ;
5252 } ) ;
5353
54- it ( 'Should detect uppercase elements' , function ( ) {
54+ it . skip ( 'Should detect uppercase elements' , function ( ) {
5555 this . shouldDetect (
5656 [ 'element-case' ] ,
5757 'A { color: red }' ,
@@ -61,7 +61,7 @@ describe.skip('options/element-case', function() {
6161 ) ;
6262 } ) ;
6363
64- it ( 'Should detect lowercase elements in a long selector' , function ( ) {
64+ it . skip ( 'Should detect lowercase elements in a long selector' , function ( ) {
6565 this . shouldDetect (
6666 [ 'element-case' ] ,
6767 'ul li:not(:hover) A { color: red }' ,
@@ -71,7 +71,7 @@ describe.skip('options/element-case', function() {
7171 ) ;
7272 } ) ;
7373
74- it ( 'Should detect uppercase elements in a long selector' , function ( ) {
74+ it . skip ( 'Should detect uppercase elements in a long selector' , function ( ) {
7575 this . shouldDetect (
7676 [ 'element-case' ] ,
7777 'ul .lol:not(LI) A { color: red }' ,
@@ -81,15 +81,15 @@ describe.skip('options/element-case', function() {
8181 ) ;
8282 } ) ;
8383
84- it ( 'Shouldn’t detect case of elements in a mixed case' , function ( ) {
84+ it . skip ( 'Shouldn’t detect case of elements in a mixed case' , function ( ) {
8585 this . shouldDetect (
8686 [ 'element-case' ] ,
8787 'aRtIcLe { color: red }' ,
8888 { }
8989 ) ;
9090 } ) ;
9191
92- it ( 'Shouldn’t detect case of elements when there are no such' , function ( ) {
92+ it . skip ( 'Shouldn’t detect case of elements when there are no such' , function ( ) {
9393 this . shouldDetect (
9494 [ 'element-case' ] ,
9595 '*.lol { color: red }' ,
0 commit comments