Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Oct 26, 2020
1 parent a453e3a commit e02d117
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion packages/remark-parse/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ test('remark().parse(file)', function (t) {
{
type: 'paragraph',
children: [
{type: 'text', value: ''},
{
type: 'link',
title: null,
Expand Down
2 changes: 1 addition & 1 deletion packages/remark-stringify/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ test('stringify escapes', function (t) {
'![a\\]b]()\n',
'`]` (in images)'
)
t.equal(toString('![a'), '\\!\\[a\n', '`!` before `[`')
t.equal(toString('![a'), '!\\[a\n', 'the `[` in `![`')
t.equal(toString('a~b'), 'a~b\n', '`~`')
t.equal(toString('a|b'), 'a|b\n', '`|`')
t.equal(toString('a_b'), 'a_b\n', '`_` (in words)')
Expand Down

0 comments on commit e02d117

Please sign in to comment.