Commit 982d495b by Andrew Nesbitt

Merge pull request #181 from hongymagic/update-libsass

Update libsass to cc595a8
parents f243bcd8 99411cf6
Subproject commit 5612dfc0ca3f7850dc3867adad7849876b0ffb4d Subproject commit cc595a87175fd53a02bdb776d818a9376bff5afe
...@@ -68,7 +68,7 @@ describe('cli', function() { ...@@ -68,7 +68,7 @@ describe('cli', function() {
]); ]);
emitter.on('error', done); emitter.on('error', done);
emitter.on('write', function(err, file, css){ emitter.on('write', function(err, file, css){
assert.equal(css.trim(), 'body {\n background: red;\n color: blue; }'); assert.equal(css.trim(), 'body {\n background: red;\n color: #0000FF; }');
fs.unlink(file, done); fs.unlink(file, done);
}); });
}); });
......
...@@ -111,7 +111,7 @@ describe("compile file with include paths", function(){ ...@@ -111,7 +111,7 @@ describe("compile file with include paths", function(){
file: path.resolve(__dirname, "include_path.scss"), file: path.resolve(__dirname, "include_path.scss"),
includePaths: [path.resolve(__dirname, "lib"), path.resolve(__dirname, "functions")], includePaths: [path.resolve(__dirname, "lib"), path.resolve(__dirname, "functions")],
success: function (css) { success: function (css) {
done(assert.equal(css, "body {\n background: red;\n color: blue; }\n")); done(assert.equal(css, "body {\n background: red;\n color: #0000FF; }\n"));
}, },
error: function (error) { error: function (error) {
done(error); done(error);
......
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