Commit 6946110d by Michael Mifsud

Merge pull request #1201 from xzyfer/feat/libsass/3.3.0-beta3

Bump LibSass to 3.3.0-beta3
parents 9a464158 680bde79
{ {
"name": "node-sass", "name": "node-sass",
"version": "3.4.0-beta1", "version": "3.4.0-beta1",
"libsass": "3.3.0-beta2", "libsass": "3.3.0-beta3",
"description": "Wrapper around libsass", "description": "Wrapper around libsass",
"license": "MIT", "license": "MIT",
"homepage": "https://github.com/sass/node-sass", "homepage": "https://github.com/sass/node-sass",
......
Subproject commit 61ac61a2b2ffef30233c9eab93633cc2622a562f Subproject commit 4f62bea2c6cccd5a08947e1a000c9b08c8d2fbb7
Subproject commit c86d79986e45397c70eedfe81fc168bd6d3eef95 Subproject commit be6ad0a4acedb09fb054137bd8c4b3fc0e3e9ae3
...@@ -44,8 +44,14 @@ describe('spec', function() { ...@@ -44,8 +44,14 @@ describe('spec', function() {
file: t.src, file: t.src,
includePaths: t.paths includePaths: t.paths
}, function(error, result) { }, function(error, result) {
if (t.error) {
assert(error);
} else {
assert(!error); assert(!error);
}
if (expected) {
assert.equal(util.normalize(result.css.toString()), expected); assert.equal(util.normalize(result.css.toString()), expected);
}
done(); done();
}); });
}); });
......
...@@ -42,6 +42,7 @@ module.exports.getSuites = function() { ...@@ -42,6 +42,7 @@ module.exports.getSuites = function() {
ret[suite][test] = {}; ret[suite][test] = {};
ret[suite][test].src = join(testPath, 'input.scss'); ret[suite][test].src = join(testPath, 'input.scss');
ret[suite][test].error = fs.existsSync(join(testPath, 'error'));
ret[suite][test].expected = join(testPath, 'expected_output.css'); ret[suite][test].expected = join(testPath, 'expected_output.css');
ret[suite][test].paths = [ ret[suite][test].paths = [
testPath, testPath,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment