|
1 | | -describe.skip('options/space-before-selector-delimiter:', function() { |
| 1 | +describe('options/space-before-selector-delimiter:', function() { |
2 | 2 | it('Array value => should not change anything', function() { |
3 | 3 | this.comb.configure({ 'space-before-selector-delimiter': ['', ' '] }); |
4 | 4 | this.shouldBeEqual('test.css'); |
@@ -29,47 +29,47 @@ describe.skip('options/space-before-selector-delimiter:', function() { |
29 | 29 | this.shouldBeEqual('test.css', 'test-3.expected.css'); |
30 | 30 | }); |
31 | 31 |
|
32 | | - it('Should detect no whitespace', function() { |
| 32 | + it.skip('Should detect no whitespace', function() { |
33 | 33 | this.shouldDetect( |
34 | 34 | ['space-before-selector-delimiter'], |
35 | 35 | 'a,b{top:0}', |
36 | 36 | { 'space-before-selector-delimiter': '' } |
37 | 37 | ); |
38 | 38 | }); |
39 | 39 |
|
40 | | - it('Should detect whitespace', function() { |
| 40 | + it.skip('Should detect whitespace', function() { |
41 | 41 | this.shouldDetect( |
42 | 42 | ['space-before-selector-delimiter'], |
43 | 43 | 'a \n ,b {top:0}', |
44 | 44 | { 'space-before-selector-delimiter': ' \n ' } |
45 | 45 | ); |
46 | 46 | }); |
47 | 47 |
|
48 | | - it('Should detect no whitespace (2 blocks)', function() { |
| 48 | + it.skip('Should detect no whitespace (2 blocks)', function() { |
49 | 49 | this.shouldDetect( |
50 | 50 | ['space-before-selector-delimiter'], |
51 | 51 | 'a,b{top:0} a ,b{left:0}', |
52 | 52 | { 'space-before-selector-delimiter': '' } |
53 | 53 | ); |
54 | 54 | }); |
55 | 55 |
|
56 | | - it('Should detect whitespace (2 blocks)', function() { |
| 56 | + it.skip('Should detect whitespace (2 blocks)', function() { |
57 | 57 | this.shouldDetect( |
58 | 58 | ['space-before-selector-delimiter'], |
59 | 59 | 'a ,b {top:0} b,a{left:0}', |
60 | 60 | { 'space-before-selector-delimiter': ' ' } |
61 | 61 | ); |
62 | 62 | }); |
63 | 63 |
|
64 | | - it('Should detect no whitespace (3 blocks)', function() { |
| 64 | + it.skip('Should detect no whitespace (3 blocks)', function() { |
65 | 65 | this.shouldDetect( |
66 | 66 | ['space-before-selector-delimiter'], |
67 | 67 | 'a ,b{top:0} b,c{left:0} c,d{right:0}', |
68 | 68 | { 'space-before-selector-delimiter': '' } |
69 | 69 | ); |
70 | 70 | }); |
71 | 71 |
|
72 | | - it('Should detect whitespace (3 blocks)', function() { |
| 72 | + it.skip('Should detect whitespace (3 blocks)', function() { |
73 | 73 | this.shouldDetect( |
74 | 74 | ['space-before-selector-delimiter'], |
75 | 75 | 'a,b{top:0} b ,c{left:0} c ,d{right:0}', |
|
0 commit comments