Skip to content

Commit

Permalink
Upgrade remark-parse and update snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
rgbkrk committed Jan 3, 2019
1 parent 340d5ef commit 841ead8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 22 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"html-to-react": "^1.3.3",
"mdast-add-list-metadata": "1.0.1",
"prop-types": "^15.6.1",
"remark-parse": "^5.0.0",
"remark-parse": "^6.0.0",
"unified": "^6.1.5",
"unist-util-visit": "^1.3.0",
"xtend": "^4.0.1"
Expand Down
28 changes: 7 additions & 21 deletions test/__snapshots__/react-markdown.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -181,14 +181,10 @@ Array [
</p>,
<ul>
<li>
<p>
foo
</p>
foo
</li>
<li>
<p>
bar
</p>
bar
</li>
</ul>,
<h2>
Expand Down Expand Up @@ -654,14 +650,10 @@ Array [
</p>,
<ul>
<li>
<p>
foo
</p>
foo
</li>
<li>
<p>
bar
</p>
bar
</li>
</ul>,
<h2>
Expand Down Expand Up @@ -1617,24 +1609,18 @@ exports[`should handle links without title attribute 1`] = `
exports[`should handle loose, unordered lists 1`] = `
<ul>
<li>
<p>
foo
</p>
foo
</li>
<li>
<p>
bar
</p>
bar
</li>
</ul>
`;

exports[`should handle loose, unordered lists with sublists 1`] = `
<ul>
<li>
<p>
foo
</p>
foo
<ul>
<li>
bar
Expand Down

0 comments on commit 841ead8

Please sign in to comment.