Skip to content

Commit

Permalink
Merge 4776363 into c2c210b
Browse files Browse the repository at this point in the history
  • Loading branch information
tomap committed Nov 23, 2018
2 parents c2c210b + 4776363 commit 8d5d992
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"chai": "^3.5.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.9.0",
"eslint-config-hexo": "^1.0.3",
"eslint-config-hexo": "^3.0.0",
"istanbul": "^0.4.5",
"jscs": "^3.0.7",
"jscs-preset-hexo": "^1.0.1",
Expand Down
16 changes: 8 additions & 8 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ describe('Stylus renderer', function() {

ctx.config.stylus = config;
result.should.eql([
'.foo {',
' color: #f00;',
'}'
].join('\n') + '\n');
'.foo {',
' color: #f00;',
'}'
].join('\n') + '\n');
});
});

Expand All @@ -55,10 +55,10 @@ describe('Stylus renderer', function() {
if (err) throw err;

result.should.eql([
'.foo {',
' color: #f00;',
'}'
].join('\n') + '\n');
'.foo {',
' color: #f00;',
'}'
].join('\n') + '\n');
});
});

Expand Down

0 comments on commit 8d5d992

Please sign in to comment.