Skip to content

Commit 5750550

Browse files
committed
Tests: Unskip core tests
1 parent 658173b commit 5750550

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

test/core/configure/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var Comb = process.env.TEST_COV ? require('../../../lib-cov/csscomb') : require('../../../lib/csscomb');
22
var assert = require('assert');
33

4-
describe.skip('csscomb methods', function() {
4+
describe('csscomb methods', function() {
55
var comb;
66
var input;
77
var output;

test/core/get-config/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var assert = require('assert');
22

3-
describe.skip('csscomb methods', function() {
3+
describe('csscomb methods', function() {
44
it('getConfig()', function() {
55
var config = require('../../../config/csscomb.json');
66

test/core/less/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
describe.skip('LESS', function() {
1+
describe('LESS', function() {
22
beforeEach(function() {
33
this.comb.configure({});
44
});

test/core/scss/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
describe.skip('SCSS', function() {
1+
describe('SCSS', function() {
22
beforeEach(function() {
33
this.comb.configure({});
44
});

test/core/use/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var assert = require('assert');
22

3-
describe.skip('.use()', function() {
3+
describe('.use()', function() {
44
it('Should set predefined options in correct order', function() {
55
var config = this.Comb.getConfig('csscomb');
66
this.comb.configure(config);

0 commit comments

Comments
 (0)