|
1 | | -describe.skip('options/space-before-colon:', function() { |
| 1 | +describe('options/space-before-colon:', function() { |
2 | 2 | it('Array value => should not change anything', function() { |
3 | 3 | this.comb.configure({ 'space-before-colon': ['', ' '] }); |
4 | 4 | this.shouldBeEqual('test.css'); |
@@ -29,31 +29,31 @@ describe.skip('options/space-before-colon:', function() { |
29 | 29 | this.shouldBeEqual('test.css', 'test-3.expected.css'); |
30 | 30 | }); |
31 | 31 |
|
32 | | - it('Should detect no whitespaces', function() { |
| 32 | + it.skip('Should detect no whitespaces', function() { |
33 | 33 | this.shouldDetect( |
34 | 34 | ['space-before-colon'], |
35 | 35 | 'a { color:red }', |
36 | 36 | { 'space-before-colon': '' } |
37 | 37 | ); |
38 | 38 | }); |
39 | 39 |
|
40 | | - it('Should detect no space from two variants', function() { |
| 40 | + it.skip('Should detect no space from two variants', function() { |
41 | 41 | this.shouldDetect( |
42 | 42 | ['space-before-colon'], |
43 | 43 | 'a { color: red; color :red }', |
44 | 44 | { 'space-before-colon': '' } |
45 | 45 | ); |
46 | 46 | }); |
47 | 47 |
|
48 | | - it('Should detect no whitespaces along three variants', function() { |
| 48 | + it.skip('Should detect no whitespaces along three variants', function() { |
49 | 49 | this.shouldDetect( |
50 | 50 | ['space-before-colon'], |
51 | 51 | 'a { color: red; background :red } b { width:10px }', |
52 | 52 | { 'space-before-colon': '' } |
53 | 53 | ); |
54 | 54 | }); |
55 | 55 |
|
56 | | - it('Should detect space', function() { |
| 56 | + it.skip('Should detect space', function() { |
57 | 57 | this.shouldDetect( |
58 | 58 | ['space-before-colon'], |
59 | 59 | 'a { color : red; background :red } b { width:10px }', |
|
0 commit comments