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