Skip to content

Commit 5efd46b

Browse files
committed
Tests: Unskip green tests
1 parent 2ece912 commit 5efd46b

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

test/options/sort-order/test.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,47 +61,47 @@ describe('options/sort-order', function() {
6161
assert.equal(input, expected);
6262
});
6363

64-
it.skip('Issue 94. Test 1', function() {
64+
it('Issue 94. Test 1', function() {
6565
var config = this.Comb.getConfig('csscomb');
6666
this.comb.configure(config);
6767
this.shouldBeEqual('issue-94-1.css', 'issue-94-1.expected.css');
6868
});
6969

70-
it.skip('Issue 94. Test 2', function() {
70+
it('Issue 94. Test 2', function() {
7171
var config = this.Comb.getConfig('csscomb');
7272
this.comb.configure(config);
7373
this.shouldBeEqual('issue-94-2.css', 'issue-94-2.expected.css');
7474
});
7575

76-
it.skip('Issue 94. Test 3', function() {
76+
it('Issue 94. Test 3', function() {
7777
var config = this.Comb.getConfig('csscomb');
7878
this.comb.configure(config);
7979
this.shouldBeEqual('issue-94-3.css', 'issue-94-3.expected.css');
8080
});
8181

82-
it.skip('Should place the leftovers in the end', function() {
82+
it('Should place the leftovers in the end', function() {
8383
var config = this.Comb.getConfig('csscomb');
8484
this.comb.configure(config);
8585
this.shouldBeEqual('leftovers-1.css', 'leftovers-1.expected.css');
8686
});
8787

88-
it.skip('Should place the leftovers in the beginning', function() {
88+
it('Should place the leftovers in the beginning', function() {
8989
var config = this.Comb.getConfig('csscomb');
9090
config['sort-order'][0].unshift(['...']);
9191
this.comb.configure(config);
9292
this.shouldBeEqual('leftovers-2.css', 'leftovers-2.expected.css');
9393
config['sort-order'][0].shift();
9494
});
9595

96-
it.skip('Should place the leftovers in the beginning of its group', function() {
96+
it('Should place the leftovers in the beginning of its group', function() {
9797
var config = this.Comb.getConfig('csscomb');
9898
config['sort-order'][1].unshift('...');
9999
this.comb.configure(config);
100100
this.shouldBeEqual('leftovers-3.css', 'leftovers-3.expected.css');
101101
config['sort-order'][1].shift();
102102
});
103103

104-
it.skip('Should place the leftovers in the middle of its group', function() {
104+
it('Should place the leftovers in the middle of its group', function() {
105105
var config = this.Comb.getConfig('csscomb');
106106
config['sort-order'][1].splice(1, 0, '...');
107107
this.comb.configure(config);

0 commit comments

Comments
 (0)