Skip to content

Commit

Permalink
test(backtick): update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
curbengh committed Oct 10, 2019
1 parent 3c865c8 commit 8240f14
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/scripts/hexo/post.js
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ describe('Post', () => {
});
});

// test for PR [#3573](https://github.com/hexojs/hexo/pull/3573)
// test for PR #3573
it('render() - (disableNunjucks === true)', () => {
const renderer = hexo.render.renderer.get('markdown');
renderer.disableNunjucks = true;
Expand All @@ -702,7 +702,7 @@ describe('Post', () => {
});
});

// test for PR [#3573](https://github.com/hexojs/hexo/pull/3573)
// test for PR #3573
it('render() - (disableNunjucks === false)', () => {
const renderer = hexo.render.renderer.get('markdown');
renderer.disableNunjucks = false;
Expand All @@ -717,8 +717,8 @@ describe('Post', () => {
});
});

// test for Issue [#2318](https://github.com/hexojs/hexo/issues/2318)
it('render() - allow backtick code block in "blockquote" tag plugn (Issue#2318)', () => {
// test for PR #2321
it('render() - allow backtick code block in "blockquote" tag plugin', () => {
const code = 'alert("Hello world")';
const highlighted = util.highlight(code);

Expand Down

0 comments on commit 8240f14

Please sign in to comment.