Skip to content

Commit

Permalink
Fix test case
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Oct 31, 2024
1 parent 036f821 commit 4d9857e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,12 @@ test('remark-validate-links', async function (t) {
[
'<stdin>',
'5:37-5:51 warning Cannot find heading for `#world` missing-heading remark-validate-links:missing-heading',
'11:31-11:58 warning Cannot find file `/Users/tilde/Projects/oss/remark-validate-links/examples/github.md` missing-file remark-validate-links:missing-file',
'23:34-23:60 warning Cannot find file `/Users/tilde/Projects/oss/remark-validate-links/examples/world.md` missing-file remark-validate-links:missing-file',
'11:31-11:58 warning Cannot find file `' +
fileURLToPath(new URL('../examples/github.md', import.meta.url)) +
'` missing-file remark-validate-links:missing-file',
'23:34-23:60 warning Cannot find file `' +
fileURLToPath(new URL('../examples/world.md', import.meta.url)) +
'` missing-file remark-validate-links:missing-file',
'',
'⚠ 3 warnings',
''
Expand Down

0 comments on commit 4d9857e

Please sign in to comment.